// JavaScript Document
<!--
//顶端资讯部分轮换
function checkMesg()
{  var theform=document.message5191
	if (theform.MyName.value=="")
    { alert("请填写联系人");
      theform.MyName.focus();
      return(false);
    }
   if (theform.Contact.value=="")
    { alert("请填写联系方式");
      theform.Contact.focus();
      return(false);
    }
   if (theform.Content.value=="")
    { alert("请填写内容");
      theform.Content.focus();
      return(false);
    }
	if (theform.CheckCode.value=="")
    { alert("请填写认证码");
      theform.CheckCode.focus();
      return(false);
    }
  return (true);
} 
//-->