// JavaScript Document
function validate(form) {
  	var e = form.elements;

	if(e['name'].value == "") {
		alert('Please fill in the Name field.');
		return false;
	}
	if(e['company'].value == "") {
		alert('Please fill in the Company / Organization field.');
		return false;
	}
	if(e['address1'].value == "") {
		alert('Please fill in the Address field.');
		return false;
	}
	if(e['city'].value == "") {
		alert('Please fill in the City field.');
		return false;
	}
	if(e['state'].value == "") {
		alert('Please fill in the State field.');
		return false;
	}
	if(e['zip'].value == "") {
		alert('Please fill in the Zip field.');
		return false;
	}
	if(e['phone'].value == "") {
		alert('Please fill in the Phone field.');
		return false;
	}
	if(e['email'].value == "") {
		alert('Please fill in the Email Address field.');
		return false;
	}
	return true;
}