
function FailPop() 
{ 
	alert("Sorry, we could not log you in with that username and password.");
}

function PendPop() 
{ 
	alert("Sorry, your account haven't been approved by administrator.");
}

function checkInput (form)
{
	if (document.form1.username.value == "")
	{
		alert("Please Enter Your UserID!");		
		return false;
	}
	else if (document.form1.password.value == "")
	{
		alert("Please Enter Your Password!");		
		return false;
	}
	else
	{
		document.form1.submit();
		return true;
	}
}

