function checkform ( form ){

  if (form.AntiSpam.value != "7") {
    alert( "The anti-spam question was not answered correctly. Try again." );
    form.AntiSpam.focus();
    return false ;
  }

  return true ;
}
