function checkform(){
if(document.FormMsg.Name.value==""){
 alert("用户名不能为空！");
 document.FormMsg.Name.select();
 return false;
}
if(document.FormMsg.Content.value==""){
 alert("留言内容不能为空！");
 document.FormMsg.Content.select();
 return false;
}
if(document.FormMsg.ValidateCodeInput.value!=document.FormMsg.ValidateCode.value){
 alert("验证码错误！")
 document.FormMsg.ValidateCodeInput.select();
 return false
}
}
