
function checkform ( form )
{
  if (form.name.value == "") {
    alert( "Please fill out the following information: Name" );
    form.name.focus();
    return false ;
  }
  
  
 /* if (form.message.value == "") {
    alert( "Please fill all the fields! (Message)" );
    form.message.focus();
    return false ;
  }
  */
    // ** END **
  return true ;
}

