function validateForm(form) {

   if (form.security.value != "cpa") { 
   alert("Please type the letters that\nappear in the image.\n\nPlease use lowercase letters."); 
   form.security.focus( ); 
   return false; 
   }
}


