function loc(a)
{
window.open(a,"","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=320,height=150");
return false;
}

function checkCompany(theform) {
	if (theform.compId.value=="") {
		alert("请输入招聘用户帐号!");
		theform.compId.focus();
		return false;
		}
	else {
		if (theform.password.value=="") {
		alert("请输入招聘用户密码!");
		theform.password.focus();
		return false;
		}
		else {
			return true;
			}
		}
}