 <!--
// Form Validation
function validateform(){
	var alertmessage = "";
	var firstnullfield;
	var alertheader = "Please enter the following information before sending this e-mail:\n\n"
	if(document.SENDEMAIL.firstname.value == ""){
		firstnullfield = document.SENDEMAIL.firstname;
		alertmessage = "  Your First Name\n";
	}
	if(document.SENDEMAIL.lastname.value == ""){
		if(firstnullfield == null){		
			firstnullfield = document.SENDEMAIL.lastname;
		}
		alertmessage = alertmessage + "  Your Last Name\n";
	}
	
	if(document.SENDEMAIL.ADDRESS1.value == ""){
		if(firstnullfield == null){		
			firstnullfield = document.SENDEMAIL.ADDRESS1;
		}
		alertmessage = alertmessage + "  Your Address 1\n";
	}
	
	if(document.SENDEMAIL.CITY.value == ""){
		if(firstnullfield == null){		
			firstnullfield = document.SENDEMAIL.CITY;
		}
		alertmessage = alertmessage + "  Your City\n";
	}
	
	if(document.SENDEMAIL.STATE.value == ""){
		if(firstnullfield == null){		
			firstnullfield = document.SENDEMAIL.STATE;
		}
		alertmessage = alertmessage + "  Your State\n";
	}
	
	
	if(document.SENDEMAIL.ZIP.value == ""){
		if(firstnullfield == null){		
			firstnullfield = document.SENDEMAIL.ZIP;
		}
		alertmessage = alertmessage + "  Your Zip\n";
	}
	
					
	if(document.SENDEMAIL.email.value == ""){
		if(firstnullfield == null){		
			firstnullfield = document.SENDEMAIL.email;
		}
		alertmessage = alertmessage + "  Your E-mail Address\n";
	}
	if(alertmessage != "" && firstnullfield != null){
		fullalertmessage = alertheader + alertmessage;
		fix_field(firstnullfield, fullalertmessage);
		return false;
	}
	if (!IsEmailValid('SENDEMAIL','email')){
		return false;
	}
	return true;
}
//-->