		  function check()
		  {
		  if (document.form1.name.value.length<1)
		  {
		  alert("Name can not be empty!")
		  document.form1.name.select();
		  return false;
		  }
		  if (document.form1.content.value.length<1)
		  {
		  alert("Messages can not be empty!")
		  document.form1.content.select();
		  return false;
		  }
		       if (document.form1.passcode.value=="")
		  {
          alert ("Please enter your code!");
          documentform1.passcode.focus();
           return(false);
		   }
		  document.form1.submit();
		  }