<!--
function ok(){
if (ck()==false){
return false;
}
writemsg.style.display = "none";
document.writetxt.submit();
}
function s(){
if (ck()==false){
return false;
}
writemsg.style.display = "none";
}
function ck(){
var txtname=document.writetxt.name.value;
var txtinfo=document.writetxt.info.value;
   if ((txtname=="")|(txtname.length>15)){
       alert("姓名格式错误,长度1-15个字符");
       return false;
   }
   if ((txtinfo=="")||(txtinfo.length>1000)){
       alert("内容格式错误,长度1000个字符");
       return false;
   }
}
-->
