function queryValidate() {
	if (property.name.value == "" || property.email.value == "" || property.tel.value == ""){
		alert("Please check that you filled out all form fields and submit again.");
	} 
	else { 
		property.submit();
	  };
}
