function checkform(theform){
  if(theform.咨询内容.value==""){
    alert("咨询内容必须填写!");
	theform.咨询内容.focus();
	return false;
  }
    if(theform.您的电话.value==""){
    alert("您的电话必须填写!");
	theform.您的电话.focus();
	return false;
  }
      if(theform.您的姓名.value==""){
    alert("您的姓名必须填写!");
	theform.您的姓名.focus();
	return false;
  }
  }

