<!--for 人才登记


function checkinput3()
{
	if  ( (!( ( document.all ("PersonID").value.length ==15 )||( document.all ("PersonID").value.length ==18 )) )  ||( !isNumber( document.all ("PersonID").value) )   )      
	{ alert("身份证号码应在英文状态下输数字，15或18位"); document.all ("PersonID").focus();return false;}	
	 
	if ( document.all ("password").value=="")
	{	alert("密码不能为空！"); document.all ("password").focus();return false ;}
	if ( document.all ("password").value!=document.all ("confirm").value)
	{	alert("两次密码输入不同！"); document.all ("confirm").focus();return false ;}

	if ( document.all ("PersonName").value=="")
	{	alert("姓名不能为空！"); document.all ("PersonName").focus();return false ;}
	if ( document.all ("PersonBIRTH_Y").value=="")
	{	alert("出生年月不能为空！"); document.all ("PersonBIRTH_Y").focus();return false ;}
	
	if ( document.all ("PersonLCAREA").value=="")
	{	alert("户口所在地不能为空！"); document.all ("PersonLCAREA").focus();return false ;}
	
 
	if (( document.all ("PersonTel").value=="")&&( document.all ("PersonEMAIL").value==""))
	{	alert("联系电话、电子邮箱必输其一！"); document.all ("PersonEMAIL").focus();return false ;}
    	

}
-->
