	function getDate(){
	   var d, s="";           //Declare variables.
	   d = new Date();                           //Create Date object.
	   s += (d.getMonth() + 1) + "/";            //Get month
	   s += d.getDate() + "/";                   //Get day
	   s += d.getYear();                         //Get year.
	   s += " " + d.getHours();
	   s += ":" + d.getMinutes();
	   s += ":" + d.getSeconds();
	   s += " ";
	   return(s);                                //Return date.

	}


	function BindKeys(){
		document.onkeypress = parseKeys;
		document.onclick = parseLClick;
		document.oncontextmenu = parseRClick;
		document.body.oncopy = parseCopy;
		document.body.onselect = parseSelect;
		window.status = getDate() + "The Hong Kong Jockey Club 香港赛马会";
		}

	function parseKeys(){
		window.status =getDate() 
		}

	function parseLClick(){

		}

	function parseRClick(){
		window.event.returnValue = false;
		window.status = getDate() + "The Hong Kong Jockey Club 香港赛马会";
		}

	function parseCopy(){
		window.event.returnValue = false;
		window.status = getDate() + "The Hong Kong Jockey Club 香港赛马会";
		}

	function parseSelect(){

		window.event.returnValue = false;
		//Window.status = getDate() + "The Hong Kong Jockey Club 香港赛马会";
		}

	//onload = BindKeys;
	BindKeys();
