function openSmallWindow(url)
{
	var smallWindow = window.open(url, "smallWindow", "width=524, height=720, toolbar=0, location=0, scrollbars=1, status=0, resizable=0, fullscreen=0, directories=0");
	smallWindow.focus();
}

function openExternalWindow(url)
{
	var externalWindow = window.open(url, "externalWindow", "width=610, height=720, toolbar=0, location=0, scrollbars=1, status=0, resizable=0, fullscreen=0, directories=0");
	externalWindow.focus();
}

function openAttraction()
{
	var attraction = window.open("2009/attraction/index.html", "attraction", "width="+screen.width+", height="+screen.height+", toolbar=0, location=0, scrollbars=0, status=0, resizable=1, fullscreen=0, directories=0");
	attraction.moveTo(0, 0);
	attraction.focus();
}