function show(zz){
 if (document.getElementById(zz).style.display=="none"){
   document.getElementById(zz).style.display="block";
 }
 else{
   document.getElementById(zz).style.display="none";
}
}
function check_m(){
 if (document.myform.person.value==''){
	 alert("请填写您的名字");
	 return false;
 }
 if (document.myform.tel.value==0){
	 alert("请填写您的电话,以方便我们联系您");
	 return false;	 
 }
  if (document.myform.title.value==0){
	 alert("请填写留言标题");
	 return false;	 
 }
  if (document.myform.content.value==0){
	 alert("请留下你的建议或意见");
	 return false;	 
 }
   if (document.myform.code.value==0){
	 alert("验证码填一个吧");
	 return false;	 
 }
}