<!-- // ignore if non-JS browser

function ValidatorEvent(theForm)
	{
		var error = "";
	
	if (theForm.firstname.value == "")
		{
			error += "Please fill in your First Name.\n";
		}
		
	if (theForm.lastname.value == "")
		{
			error += "Please fill in your Last Name.\n";
		}
	
	if (theForm.email.value == "")
		{
		error += "You must include an accurate email address for a response.\n";
		}
	
	if ((theForm.email.value.indexOf ('@',0) == -1 || theForm.email.value.indexOf ('.',0) == -1) && theForm.email.value != "")
		{
			error += "Please verify that your email address is valid.";
		}
	
	if (error != "")
		{
			alert(error);
			return (false);
		}
		
		else {
			return (true);
		}
	
	}
	
function ValidatorVendor(theForm)
	{
		var error = "";
	
	if (theForm.companyname.value == "")
		{
			error += "Please fill in your Company Name.\n";
		}
		
	if (theForm.contactname.value == "")
		{
			error += "Please fill in your Contact Name.\n";
		}
	
	if (theForm.email.value == "")
		{
		error += "You must include an accurate email address for a response.\n";
		}
	
	if ((theForm.email.value.indexOf ('@',0) == -1 || theForm.email.value.indexOf ('.',0) == -1) && theForm.email.value != "")
		{
			error += "Please verify that your email address is valid.";
		}
	
	if (error != "")
		{
			alert(error);
			return (false);
		}
		
		else {
			return (true);
		}
	
	}
// -->
