
		function validateForm(obj) {
			var antispam = obj.txtAntiSpam;
			if (antispam.value.toLowerCase() == "website") {
				return true;
			}
			else {
				antispam.style.borderColor = "red";
				antispam.style.borderWidth = "3px";
				antispam.focus();
				alert("Your details have not been submitted.\n\nIn order to prevent the mountains of automated spam we get through our website forms, we need you to enter the word 'website' into the last box on the page. It should now be highlighted with a red border.\n\nPlease re-submit the form once you have done this and we will be in touch shortly.")
				return false;
			};
		};