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

	if(e['firstname'].value == "") {
		alert('Please fill in the First Name field.');
		return false;
	}
	if(e['lastname'].value == "") {
		alert('Please fill in the Last Name field.');
		return false;
	}
	if(e['company'].value == "") {
		alert('Please fill in the Company field.');
		return false;
	}
	if(e['email'].value == "") {
		alert('Please fill in the Email field.');
		return false;
	}
	if(e['phone'].value == "") {
		alert('Please fill in the Phone field.');
		return false;
	}
	if(e['question'].value == "") {
		alert('Please fill in the Questions/Feedback field.');
		return false;
	}
	return true;
}

