// JavaScript Document

<!--
 
function validateForm() {
with (document.contact) {
var alertMsg = "Please fill out the required fields!\nFollowing fields are missing:\n";
if (name.value == "") alertMsg += "\nname";
if (email.value == "") alertMsg += "\nemail";
if (message.value == "") alertMsg += "\nyour message";
if (budget.value == "") alertMsg += "\ntravel budget";
 
if (alertMsg != "Please fill out the required fields!\nFollowing fields are missing:\n") {
alert(alertMsg);
return false;
} else {
return true;
} } }
 
 
// -->