
	<!--Hide from older browsers
	//This function is used to initialise the page
	function initialise() {
		var today=new Date();
		//document.write(today.getDay());
		//alert(today.getDay());
	}

	//This function controls the mouseOver events on the navigator bar
	function swapImage(me) {
		me.style.color="#FF4444";
		me.style.textDecoration="underline";
	}
		//This function controls the mouseOut events on the navigator bar
	function swapImageBack(me) {
		me.style.color="#1E64C8";
		me.style.textDecoration="none";
	}
	
	function doWindowOpen(pageName) {
	 window.open(pageName, "NetMarks","toolbar=no,resizable=yes,scrollbars=yes,width=600,height=450");
	}

	
	
	//Stop hiding -->
