function emailCheck() {
	if (document.all("name").value=="") {
		alert("请输入姓名！");
		document.all("name").focus();
		return false;
	}
	if (document.all("phone").value=="") {
	   alert("请输入电话！");
	   document.all("phone").focus();
	   return false;
	}
	if (document.all("email").value=="") {
		alert("请输入邮箱！");
		document.all("email").focus();
		return false;
	}
	var email = document.all("email").value;
	if (email=="") {
		alert("请输入邮箱！");
		document.all("email").focus();
		return false;
	}
	var matchArray = email.match(/^(.+)@(.+)\.(.+)$/)
	if (matchArray == null) {
		alert("电子邮件输入不合法，请检查: " + email);
		return false;
    }
	if (document.all("title").value=="") {
		alert("请输入预定标题！");
		document.all("title").focus();
		return false;
	}
	return true;
  }
