
	var ThisDoc = document.Howdy;	
	var GetKey;

/* -------------------------------------- Key Capture ------------------------------- */
	if (document.layers)
		document.captureEvents(Event.KEYPRESS)
	function GetKeyVal(e){
		if (document.layers){
			GetKey = e.which;
		}
		else if (document.all){
			GetKey = event.keyCode;
		}

		if (GetKey == 13)
			DoLogon();

	}
	document.onkeypress=GetKeyVal
/* ------------------------------------ End of Key Capture ---------------------------- */

function DoLogon(){
	location.href = 'Hlogon.htm';
}
