// JavaScript Document
function validate(form) {
  	var e = form.elements;

	if(e['field_82'].value == "") {
		alert('Please fill in the First Name field.');
		return false;
	}
	if(e['field_83'].value == "") {
		alert('Please fill in the Last Name field.');
		return false;
	}
	if(e['field_84'].value == "") {
		alert('Please fill in the Email field.');
		return false;
	}
	return true;
}