function Checkcomment()
{
  if(document.mycomment.userName.value==''){
    alert('姓名不能为空！');
      document.mycomment.userName.focus();
      return(false) ;
  }
  if(document.mycomment.Content.value==''){
    alert('内容不能为空！');
      document.mycomment.Content.focus();
      return(false) ;
  }
  if(document.mycomment.CheckCode.value==''){
    alert('验证码不能为空！');
      document.mycomment.CheckCode.focus();
      return(false) ;
  }
  if(document.mycomment.Content.value.length>65536){
    alert('内容不能超过64K！');
      document.mycomment.Content.focus();
      return(false) ;
  }
}

