
<!--


function checkform(infrm)
{

	
	if (!validate("string", infrm.userid.value))
	{
		alert ("Please enter your user name.");
		infrm.userid.focus();
		return false;
	}	
	
	if (!validate("string", infrm.pw.value))
	{
		alert ("Please enter your password.");
		infrm.pw.focus();
		return false;
	}	
	

	
	return true;

}


//-->
