// mailer-captcha is used by mail forms that use the "name this photo" captcha method.

$CAPTCHA = 'apple';	// must be lowercase!!!


function captchaCheck (fruit, alertbox)
 {
	 with (fruit)
	 
	 {
	
		$myfruit = value;
		$myfruit = $myfruit.toLowerCase();
				 
	 if ($myfruit == $CAPTCHA)
	 	{ return false; }
	 else
	 	{ alert(alertbox); return true; }
	 }
 }
 

function captchaValidate (thisform)
 {
 	with (thisform)
 	{
 		if (captchaCheck(captcha,"Oops! You didn\'t pass the anti-robot test.\n\nPlease fill in the correct answer, which is \'" + $CAPTCHA + "\'.")==true) {captcha.focus(); return false;};
 	}
 } 
