
	/*  Pass BackTo and WhereToGo */
	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 == 27) {
			SeeYa();
		}

		if (GetKey == 13) {
			GoForward();
		}

	}
	document.onkeypress=GetKeyVal
/* ------------------------------------ End of Key Capture ---------------------------- */

  function GoForward(){
	location.href = WhereToGo
}

  function SeeYa(){
	location.href = BackTo
}



