// Function to popup a clue window from the default page

function clue() {
	page = "clue.htm";
	width = 545;
	height = 330;

	clueWindow = window.open (page,"large","toolbar=yes,width=" + width + ",height=" + height +",directories=no,status=no,scrollbars=no,resize=no,menubar=no")
	clueWindow.focus()
} 




// Function to popup the promotion window on the default page

function popUpWindow() {
	page = "HomePagePromo.html";
	width = 400;
	height = 230;
	// promo ends 12/21/2002
	endDate = new Date(2002, 11, 21);
	currentDate = new Date();
	
	if (currentDate < endDate)
	{
		popUpWindow=window.open(page,"","width="+width+",height="+height+",scrollbars=1");
	}
}
