function validator(form) { 

  if (form.spam.value != "L3m6C7") {
    alert("The SpamCheck letters you have typed do not match the picture.  Please try again.");
    form.spam.focus();
    return false;
  }
  
return true; 
} 
