function checkForm(form){
	var email = form.txtEmail.value;
	if (email.length === 0){
		alert("Please enter an email address so that we may \ncontact you regarding your request!" );
		return false;
	}
	return true;
}