// JavaScript Document
function chk()
{
if (document.frm.sname.value=='')
{
	alert("系统提示：请输入您的姓名。")
	document.frm.sname.focus();
	return false
}
if (document.frm.tel.value=='')
{
	alert("系统提示：请输入您的座机。")
	document.frm.tel.focus();
	return false
}
if (isNaN(document.frm.mobile.value))
{
	alert("系统提示：请输入正确的手机号。")
	document.frm.mobile.value = '';
	document.frm.mobile.focus();
	return false
}
if (document.frm.mobile.value.length != 11)
{
	alert("系统提示：请输入正确的手机号。")
	document.frm.mobile.value = '';
	document.frm.mobile.focus();
	return false
}
if (document.frm.email.value=='')
{
	alert("系统提示：您的电子邮箱地址不正确。")
	document.frm.email.focus();
	return false
}
if (document.frm.email.value.length > 0 && !document.frm.email.value.match( /^.+@.+$/ ) )
 {
alert("系统提示：您的电子邮箱地址不正确。");
document.frm.email.focus();
return false;
}
if (document.frm.city.value=='')
{
	alert("系统提示：请选择您的省份。")
	document.frm.city.focus();
	return false
}
}

function chkf()
{
if (document.send.email.value=='')
{
	alert("系统提示：您的电子邮箱地址不正确。")
	document.send.email.focus();
	return false
}
if (document.send.email.value.length > 0 && !document.send.email.value.match( /^.+@.+$/ ) )
{
alert("系统提示：您的电子邮箱地址不正确。");
document.send.email.focus();
return false;
}
}
