<!--
function validateForm(){ var form_object = document.forms.quote;
if(form_object.elements.first_name.value == ''){alert('Please enter your first name.');
return false;
} else if(form_object.elements.move_date.value == ''){alert('Please enter the move date.');
return false;
} else if(isNaN(form_object.elements.from_zip.value)){alert('Please enter a valid current zip code. (The zip code where your items will be loaded.)');
return false;
} else if(form_object.elements.from_zip.value < 10000){alert('Please enter a valid current zip code. (The zip code where your items will be loaded.)');
return false;
} else if(form_object.elements.from_type.selectedIndex < 1) {alert('Please enter the type of location you are moving from.');
return false;
} else if(form_object.elements.email.value == ''){alert('Please enter your email.');
return false;
} else if(isNaN(form_object.elements.to_zip.value)){alert('Please enter a valid new zip code. (The zip code where your items will be unloaded.)');
return false;
} else if(form_object.elements.to_zip.value < 10000){alert('Please enter a valid new zip code. (The zip code where your items will be unloaded.)');
return false;
} else if(form_object.elements.to_type.selectedIndex < 1) {alert('Please enter the type of location you are moving to.');
return false;
}
return true;
}
//-->
