// JavaScript Document

function validate() {
	
var error = 0;

if( document.apply.firstName.value.length == 0 ) {
	error = 1;
}

if( document.apply.lastName.value.length == 0 ) {
	error = 1;
}

if( document.apply.phone.value.length == 0 ) {
	error = 1;
}

if( document.apply.address_1.value.length == 0 ) {
	error = 1;
}

if( document.apply.city.value.length == 0 ) {
	error = 1;
}

if( document.apply.zip.value.length == 0 ) {
	error = 1;
}

if( document.apply.state.value.length == 0 ) {
	error = 1;
}

if( error == 0 ) {
	return true;
} else {
	alert("You did not complete all of the required fields.");
	return false;
}
	
	
}