function CkFdbkForm(){

	if (document.getElementById("Cncter").value=="")
	{
		alert("错误：\n\n联系人不能为空！");
		document.getElementById("Cncter").focus();
		return false;
	}

	
	if (document.getElementById("Tel").value=="")
	{
		alert("错误：\n\n联系电话不能为空！");
		document.getElementById("Tel").focus();
		return false;
	}
	
	if (document.getElementById("EMail").value=="")
	{
		alert("错误：\n\nE-Mail不能为空！");
		document.getElementById("EMail").focus();
		return false;
	}
	
	var emailstr = (document.getElementById("EMail").value)
	if ((emailstr!="")&& ((emailstr.indexOf('@',0)==-1)||(emailstr.indexOf('.',0)==-1)||(emailstr.length<6)))
	{
		alert("请您输入合法的E-mail地址!");
		document.getElementById("EMail").focus();
		return false;
	 }
		 
	if (document.getElementById("Contct").value=="")
	{
		alert("错误：\n\n内容不能为空！");
		document.getElementById("Contct").focus();
		return false;
	}
		
return true;
}

function CkSearchForm(){
	with(document.form1)
		{
			if((KeyWord.value=="")&&((TypeInfoNO.value=="")||(TypeInfoNO.value=="All")))
			{
				alert("错误：\n\n请输入搜索关键字！");
				KeyWord.focus();
				return false;
			}			
			return true;
	}
}

