function checkVForm() {
	if (document.vform.phone.value=='' && document.vform.e_mail.value=='') {
		alert("Please enter a phone number or email address");
		return false;
	} else {
		alert("Thank you. We will contact you shortly.");
		document.vform.submit();
	}
}