var returnValue = true;
var quotes = ["images/quotes/q1.gif", "images/quotes/q2.gif", "images/quotes/q3.gif"];

var len = quotes.length;

function showQ()
{ 
var rand = Math.floor(len*Math.random());
var quote = quotes[rand];
document.write("<img src=\""+quote+"\">");
} 

function window(page) {
OpenWin = this.open(page, "MapQuest", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes");
}

