function selectSeason (source)
{
		var today = new Date();
		var month = today.getMonth() + 1;
		if (source == "content")
		{
			if (month == 12 || month == 1 || month == 2)
				document.write('<link href="../css/winter.css" rel="stylesheet" type="text/css" />');
			else if (month == 3 || month == 4 || month == 5)
				document.write('<link href="../css/spring.css" rel="stylesheet" type="text/css" />');
			else if (month == 6 || month == 7 || month == 8)
				document.write('<link href="../css/summer.css" rel="stylesheet" type="text/css" />');
			else if (month == 9 || month == 10 || month == 11)
				document.write('<link href="../css/fall.css" rel="stylesheet" type="text/css" />');
		}
		else if (source == "index")
		{
			if (month == 12 || month == 1 || month == 2)
				document.write('<link href="css/winter.css" rel="stylesheet" type="text/css" />');
			else if (month == 3 || month == 4 || month == 5)
				document.write('<link href="css/spring.css" rel="stylesheet" type="text/css" />');
			else if (month == 6 || month == 7 || month == 8)
				document.write('<link href="css/summer.css" rel="stylesheet" type="text/css" />');
			else if (month == 9 || month == 10 || month == 11)
				document.write('<link href="css/fall.css" rel="stylesheet" type="text/css" />');
		}
}

function openWindow (url,name,w,h)
{
	wleft = (screen.width - w) / 2;
	wtop = (screen.height - h) / 2;
	var win = window.open(url,name,'width='+w+',height='+h+',top='+wtop+',left='+wleft+',resizable=no,scrollbars=no,location=no,directories=no,status=yes,menubar=no,copyhistory=no');
	// Just in case width and height are ignored
	win.resizeTo(w, h);
	// Just in case left and top are ignored
	win.moveTo(wleft, wtop);
	win.focus();
}
function closeWindow ()
{
	window.close();
}
function insertFlash(path,w,h)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+w+'" height="'+h+'" id="player" align="middle">\n');
	document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
	document.write('<param name="movie" value="'+path+'?bgcolor=#ffffff" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="bgcolor" value="#ffffff" />\n');
	document.write('<embed src="'+path+'?bgcolor=#ffffff" quality="high" bgcolor="#ffffff" width="'+w+'" height="'+h+'" name="index" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
	document.write('</object>\n');
}
