function validateMe(thisForm) {
  
  var reg3 = /[0-9]/; // valid
  
    
  if (thisForm.name.value.length < 2)
        { alert('Please fill in your name!'); thisForm.name.focus(); return (false);}
		 
  if (thisForm.email.value.length < 2)
        { alert('Please fill in your email address!'); thisForm.email.focus(); return (false);}
  
  if (thisForm.imagecheck.value.length < 2)
        { alert('Please fill in security text!'); thisForm.imagecheck.focus(); return (false);}
  
    
}

