function re_chkdata2()
{
  if (document.myform2.userid.value=="")
  {
    alert("错误：留言者不能为空！");
	document.myform2.userid.focus();
	return false;
  }
    if (document.myform2.content.value=="")
  {
    alert("错误：留言内容不能为空！");
	document.myform2.content.focus();
	return false;
  }

  return true;  
}