function isEmpty(email) {
email = document.forms[0].email.value 

if (email == "") {
alert("Please provide your email address so we can get in touch with you!")
return false; }
}