﻿window.onerror=new Function ("return true")



function evaluate() {
	 if (document.Contact.Company.value < 1) { 
      	window.alert("Please enter your company name.");
      	document.Contact.Company.focus();
      	return false;
	}
   if (document.Contact.ContactPerson.value < 1) { 
      	window.alert("Please enter your name.");
      	document.Contact.ContactPerson.focus();
      	return false;
	}
   if (document.Contact.Telephone.value < 1) { 
      	window.alert("Please enter your telephone number.");
      	document.Contact.Telephone.focus();
      	return false;
	}
   if (document.Contact.Email.value < 1) { 
      	window.alert("Please enter your e-mail address.");
      	document.Contact.Email.focus();
      	return false;
	}
}

