//form validation code
function validateEmail()
{
 if (document.Form1.Firstname.value.length<1)
 		{
		 window.alert("You must enter a First Name.");
		 document.Form1.Firstname.focus();
		 return false;
		}
		if (document.Form1.Lastname.value.length<1)
 		{
		 window.alert("You must enter a Last Name.");
		 document.Form1.Lastname.focus();
		 return false;
		}
		if (document.Form1.Title.value.length<1)
 		{
		 window.alert("You must enter your title.");
		 document.Form1.Title.focus();
		 return false;
		}
		if (document.Form1.Company.value.length<1)
 		{
		 window.alert("You must your company's name.");
		 document.Form1.Company.focus();
		 return false;
		}
		if (document.Form1.submit_by.value.length<1)
 		{
		 window.alert("You must enter an E-mail address.");
		 document.Form1.submit_by.focus();
		 return false;
		}
		if (document.Form1.Address.value.length<1)
 		{
		 window.alert("You must enter an address.");
		 document.Form1.Address.focus();
		 return false;
		}
		if (document.Form1.country.value.length<1)
 		{
		 window.alert("You must choose a country.");
		 document.Form1.country.focus();
		 return false;
		}
		if (document.Form1.City.value.length<1)
 		{
		 window.alert("You must enter a city.");
		 document.Form1.City.focus();
		 return false;
		}
		if (document.Form1.State.value.length<1)
 		{
		 window.alert("You must enter a state or province.");
		 document.Form1.State.focus();
		 return false;
		}
		if (document.Form1.Zip.value.length<1)
 		{
		 window.alert("You must enter your zip or postal code.");
		 document.Form1.Zip.focus();
		 return false;
		}
		if (document.Form1.Phone.value.length<1)
 		{
		 window.alert("You must enter a phone number.");
		 document.Form1.Phone.focus();
		 return false;
		}
		if (document.Form1.Model.value.length<1)
 		{
		 window.alert("You must choose a model.");
		 document.Form1.Affiliated.focus();
		 return false;
		}
}


