function validateForm(){
	if ( (document.getElementById("name").value==null) || (document.getElementById("name").value.length==0) ){
		alert('Please provide both a name and phone number so we can contact you.');
		return false;
	}
	if ( (document.getElementById("phone").value==null) || (document.getElementById("phone").value.length==0) ) {
		alert('Please provide both a name and phone number so we can contact you.');
		return false;
	}
	
	return true;
}