<!--
function checkSubmit()
{
if ((document.form1.title.value)=='')
{
window.alert ('请您填写咨询标题.');
document.form1.title.select();
document.form1.title.focus();
return false;
}


if ((document.form1.neirong.value)=='')
{
window.alert ('请您填写咨询内容.');
document.form1.neirong.select();
document.form1.neirong.focus();
return false;
}
if ((document.form1.name.value)=='')
{
window.alert ('请您填写咨询联系人.');
document.form1.name.select();
document.form1.name.focus();
return false;
}
if (document.form1.email.value=='')
{
window.alert ('请您填写常用邮箱地址,我们会将回复发送到您的邮箱.');
document.form1.email.select();
document.form1.email.focus();
return false;
}
if(document.form1.email.value.charAt(0)=="." ||        
       document.form1.email.value.charAt(0)=="@"||       
       document.form1.email.value.indexOf("@", 0) == -1 || 
       document.form1.email.value.indexOf(".", 0) == -1 || 
       document.form1.email.value.lastIndexOf("@")==document.form1.email.value.length-1 || 
       document.form1.email.value.lastIndexOf(".")==document.form1.email.value.length-1)
	 {
      alert("您输入的E-mail地址格式错误.");
      document.form1.email.focus();
      document.form1.email.select();
      return false;
     }
return true;
}

//-->
