<!--
function chkLogin() {
	if (document.frmLogin.txtLogin.value.length == 0) {
		alert("Please enter a login ID!");
		document.frmLogin.txtLogin.focus();
		return false;
	}
	
	if (document.frmLogin.txtPassword.value.length == 0) {
		alert("Please enter a password!");
		document.frmLogin.txtPassword.focus();
		return false;
	}
	
	return true;
}
// -->