function validate(){
if (document.rqForm.name.value==""){
	alert ("You must fill in all of the required fields! \n Please fill in your Name");
	return false;
	} 
if (document.rqForm.email.value==""){
	alert ("You must fill in all of the required fields! \n Please fill in your email address");
	return false;
	} 
if (document.rqForm.phone.value==""){
	alert ("You must fill in all of the required fields! \n Please fill in your phone number");
	return false;
	} 
if (document.rqForm.zip.value==""){
	alert ("You must fill in all of the required fields! \n Please fill in your zip code");
	return false;
	} 
}
