<!--
function checkForm() {
    var formName = document.login.u;
	var formPass = document.login.p;
	
	var msg = "";
       		if (formName.value.length <= 6)
			{
			var msg = 'You have not entered a User ID';
			alert(msg);
			formName.focus();
			formName.select();
			return false;     
			}
			if (formPass.value.length <= 6)
			{
			var msg2 = 'You have not entered a Password';
			alert(msg2);
			formPass.focus();
			formPass.select();
			return false;     
			}
				
			return true;
}
//-->
