function validateForm() {
with (document.cssform) {
var alertMsg = "The following REQUIRED fields\nhave been left empty:\n";
if (Name.value == "") alertMsg += "\nName";
if (Address.value == "") alertMsg += "\nAddress";
if (City.value == "") alertMsg += "\nCity";
if (State.options[State.selectedIndex].value == "") alertMsg += "\nState";
if (Zip.value == "") alertMsg += "\nZip";
if (email.value == "") alertMsg += "\nemail";
if (Phone.value == "") alertMsg += "\nPhone";
if (alertMsg != "The following REQUIRED fields\nhave been left empty:\n") {
alert(alertMsg);
return false;
} else {
return true;
} } }

