function checkEnquire(myForm) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(enquire.contact_email.value)){
//return (true)
}
else{
alert("That email address appears invalid. Please re-enter.")
return (false)
}

var numericExpression = /^[0-9]+$/;

if(enquire.info.value.match(numericExpression)){
		//return true;
	}

else{
alert("The HASP number should be 4 digits. If the number if less than this, place a '0' at the beginning")
		return false;
	}
	
if(enquire.info.value.length < 4){
alert("The HASP number should be 4 digits. If the number if less than this, place a '0' at the beginning")
		return false;
	}
	
}