<!--

var isnav = (navigator.appName.indexOf("Netscape") != -1);
function getkey(keyStroke){
	keyhit = (isnav) ? keyStroke.which : event.keyCode;
	checkkey();
}
function checkkey(){
	if ((keyhit > 57) | (keyhit < 48)){
//		alert("Only the digits 0-9 are Valid!");
//		if(isnav){
//			keyStroke.which = 0
//		}else{
//			event.keyCode = 0
//		}
	}
}
function chkform(){
	if((document.flogin.txtuser.value == "") | (document.flogin.txtpass.value == "")){
		return false
		showLayer("menubar")
	}
}
function SetF(){
	document.flogin.txtuser.focus();
}
//-->
