function phyLogin(sendForm) {
	if ((document.YPOL_Login.name.value)=="") {
		document.YPOL_Login.name.focus();
		alert("A User ID is required. Please enter one and try again.");
		return false;
	}
	if ((document.YPOL_Login.pswd.value)=="")
	{
		document.YPOL_Login.pswd.focus();
		alert("A password is required. Please enter one and try again.");
		return false;
	}
	document.YPOL_Login.loginName.value=document.YPOL_Login.name.value;
	document.YPOL_Login.password.value=document.YPOL_Login.pswd.value;
	//document.YPOL_Login.WHATTODO.value=document.YPOL_Login.act.value;
	if (sendForm == true) {
		setTimeout("document.YPOL_Login.submit();", 10);
	}
	return true;
}
