function  checkit()
  {		
  if (document.adFrm.name.value == "")
    {
	alert("Please enter your name");
	document.adFrm.name.focus();
	document.adFrm.name.select();
	return false;
	}
				
  if (document.adFrm.email.value == "" && document.adFrm.phone.value == "")
    {
	alert("Please enter your e-mail address or a phone number");
	document.adFrm.email.focus();
	document.adFrm.email.select();
	return false;
	}
	
  // **Daz** 01/02/2007 - Captcha
  if (document.adFrm.ID.value.length < 1) {
     alert("Please enter the verification code");
  }			
			
  return true;
  }
  
 function preloadCaptcha() {
		cImg = new Image(130,43);
		cImg.src = "http://www.humanverify.com/a2zverify/a2zimage.asp?id=BathCoUk";
		cImg.title = "Please enter this HumanVerify code exactly as seen here in the verification box below.";
		var hcImg = document.getElementById('aCPImg');
		if (hcImg) hcImg.src = cImg.src;
 }
	
