<!--
function ValidateForm(theForm)
{

var sErr = "";
var iset = 0;

	if (theForm.fFirstName.value == "") sErr += "You must enter a First Name.\n";
	if (theForm.fLastName.value == "") sErr += "You must enter a Last Name.\n";
	if (theForm.fTelephone.value == "" && theForm.fEmail.value == "") sErr += "You must enter either your Telephone Number or your Email Address.\n";
	if (sErr != "") {
		alert("The following Errors Occurred\n\n" + sErr);
		return false;
	}
	else
		return true;
}
// -->