function checkForm ( form )
{
  // see http://www.thesitewizard.com/archive/validation.shtml
  // for an explanation of this script and how to use it on your
  // own website

  // ** START **
  if (form.Nama.value == "") {
    alert( "Tiada Nama?" );
    form.Nama.focus();
    return false ;
  }
  if (document.form.Mesej.length < 6) {
    alert( "Tiada Mesej?" );
    form.Mesej.focus();
    return false ;
  } 
  /* else if(form.Mesej.length < 6) {
   alert( "Cubaan Jahat Dikesan. IP anda direkodkan");
   form.Mesej.focus();
   return false ;
   } */
  // ** END **
  return true ;
}
/* if (isNaN(Mesej)) { // If is not a number. Not a must.
if (prompt.length < 6) {
problem = true;
var problem += "\nPlease enter more then 6 chars in question [...]";
}
if(problem) {
alert("There is atleast one problem!");
alert("Problem(s):\n" + problem);
}
}
*/