// Auburn Area Community Theatre Website - (C) 2004

// Headline message
var headlinetext = 'Get your tickets for &quot;Lend Me a Tenor&quot;! <a href="http://www.auburnact.org/shows/index.html">Click here for more information.</a>';

// Vars for quotes
var quotes = new Array();
var quoteCount = 0;
//quotes[quoteCount++] = "&quot;<em>Some random quote could go here. Maybe a quote from a play, or even Shakespear. Or Personal Quotables.</em>&quot; - Greg Leuch";
//quotes[quoteCount++] = "&quot;<em>If that thing does not stop buzzing, that'll be all she wrote.</em>&quot; - Dan, Greg's roommate";
quotes[quoteCount++] = "&quot;<em>I know a place where the piper plays, turning the nights into newborn days. There at the gate, a miracle waits, so come, come away, come away.</em>&quot; - Douglas Post, Act I, <em>Wind in the Willows<em>";


function changeImage(imagename, imagesrc) {
	imagechange = eval("document."+imagename);
	imagechange.src = "http://www.auburnact.org/images/"+imagesrc;
	return true;
}

function emailPage(){
	var page = escape(location);
	var mailPage = 'http://www.auburnact.org/scripts/mail/mailpage.php?url=' + page;
	
	var newWindow;
	newWindow=window.open(mailPage,'_vEmail','scrollbars=yes,width=500,height=550');
	newWindow.focus();

}

function bookmarkPage(){
	if (window.external) {
		var file = location.href;
		var bookmarkablePage = 'http://www.auburnact.org/scripts/bookmark/bookmark.php?url=' + file.substring(0, file.length);
	
		location.href = bookmarkablePage;
	}
}
 function printPage(){
	var page = escape(location);
	var printPage = 'http://www.auburnact.org/scripts/print/printable.php?url=' + page;
				
	var newWindow;
	newWindow=window.open(printPage,'_vPrint','scrollbars=yes,width=600,height=400');
	newWindow.focus();
	
}

function getRandomNumber(){
	var smallest = 0;
	
	return Math.floor(Math.random() * quoteCount)
}

function getQuote(num){
	return quotes[num];
}