		<!--Check Enquiry Form --!>

		<!--  Begin function resetform() {document.forms[0].elements[0]=="";}
		function submitForms() {if (isName() && isEmail())
		if (confirm("\n You are about to subscribe to the mailing list. \n\nYES to submit.    CANCEL to abort.")){
		document.subscribe.action="subscribe_submit.asp"
		document.subscribe.submit();
		}
		else
		{
		alert("\n You have chosen not to subscribe to the mailing list.");
		return false;
		}
		else
		return false;
}

function isName() {
if (document.forms[0].realname.value == "Name") {
alert ("\n Please enter your name.")
document.forms[0].realname.focus();
return false;
}
return true;
}



		function isEmail() {
			if ((document.subscribe.email.value == "")) {
			alert ("\n Please enter your email address.")
			document.subscribe.email.focus();
			return false;
			}
			if (document.subscribe.email.value.indexOf ('@',0) == -1 ||
			document.subscribe.email.value.indexOf ('.',0) == -1)
			{
			alert ("\n Invalid email entered. Please re-enter your email address.")
			document.subscribe.email.select();
			document.subscribe.email.focus();
			return false;
			}
			else{

			return true;
			}
		}



// End -->