function highlight(ele){
  ele.style.backgroundColor='#E4801C';
  ele.style.color='#FFFFFF';
}
function lowlight(ele){
  ele.style.backgroundColor='#FFFFFF';
  ele.style.color='#E4801C';
}
function validate() {
	firstName = document["contactForm"].firstName.value;
	lastName = document["contactForm"].lastName.value;
	address = document["contactForm"].address.value;
	address2 = document["contactForm"].address2.value;
	city = document["contactForm"].city.value;
	state = document["contactForm"].state.value;
	zip = document["contactForm"].zip.value;
	email = document["contactForm"].email.value;
	company = document["contactForm"].company.value;
	jobTitle = document["contactForm"].jobTitle.value;
	
	if (firstName == '' || lastName == '' || address == '' || address2 == '' || city == '' || state == '' || zip == '' || email == '' || company == '' || jobTitle == '') {
		alert("Please fill in all required fields. An '*' indicates it is required.");
		return false;
	}

}