  function check_form() { 
    if (document.add.content.value == "") { 
      alert('Content can not empty'); 
      document.add.content.focus(); 
      return false; 
    } 
  }