// JavaScript Document
	
														function FrontPage_Form1_Validator(theForm)
														{
															
															
															
																											
														  if (theForm.Contact_FirstName.value == "")
														  {
															alert("Please enter a value for the \"First Name\" field.");
															theForm.Contact_FirstName.focus();
															return (false);
														  }
														
														  if (theForm.Contact_FirstName.value.length < 1)
														  {
															alert("Please enter at least 1 characters in the \"First Name\" field.");
															theForm.Contact_FirstName.focus();
															return (false);
														  }
														
														  if (theForm.Contact_FirstName.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"First Name\" field.");
															theForm.Contact_FirstName.focus();
															return (false);
														  }
														
														  if (theForm.Contact_LastName.value == "")
														  {
															alert("Please enter a value for the \"Last Name\" field.");
															theForm.Contact_LastName.focus();
															return (false);
														  }

														  if (theForm.Contact_LastName.value.length < 1)
														  {
															alert("Please enter at least 1 characters in the \"Last Name\" field.");
															theForm.Contact_LastName.focus();
															return (false);
														  }
														
														  if (theForm.Contact_LastName.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"Last Name\" field.");
															theForm.Contact_LastName.focus();
															return (false);
														  }

														  if (theForm.Contact_Organization.value == "")
														  {
															alert("Please enter a value for the \"Contact_Organization\" field.");
															theForm.Contact_Organization.focus();
															return (false);
														  }
														
														  if (theForm.Contact_Organization.value.length < 5)
														  {
															alert("Please enter at least 5 characters in the \"Contact_Organization\" field.");
															theForm.Contact_Organization.focus();
															return (false);
														  }
														
														  if (theForm.Contact_Organization.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"Contact_Organization\" field.");
															theForm.Contact_Organization.focus();
															return (false);
														  }

														  if (theForm.Contact_StreetAddress.value == "")
														  {
															alert("Please enter a value for the \"Stree Address\" field.");
															theForm.Contact_StreetAddress.focus();
															return (false);
														  }
														
														  if (theForm.Contact_StreetAddress.value.length < 1)
														  {
															alert("Please enter at least 1 characters in the \"Stree Address\" field.");
															theForm.Contact_StreetAddress.focus();
															return (false);
														  }
														
														  if (theForm.Contact_StreetAddress.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"Stree Address\" field.");
															theForm.Contact_StreetAddress.focus();
															return (false);
														  }

														  if (theForm.Contact_City.value == "")
														  {
															alert("Please enter a value for the \"City\" field.");
															theForm.Contact_City.focus();
															return (false);
														  }
														
														  if (theForm.Contact_City.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"City\" field.");
															theForm.Contact_City.focus();
															return (false);
														  }
														
														  if (theForm.Contact_State.value == "")
														  {
															alert("Please enter a value for the \"State/Province\" field.");
															theForm.Contact_State.focus();
															return (false);
														  }

														  if (theForm.Contact_State.value.length < 1)
														  {
															alert("Please enter at least 1 characters in the \"State/Province\" field.");
															theForm.Contact_State.focus();
															return (false);
														  }
														
														  if (theForm.Contact_State.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"State/Province\" field.");
															theForm.Contact_State.focus();
															return (false);
														  }
														
														  if (theForm.Contact_ZipCode.value == "")
														  {
															alert("Please enter a value for the \"Postal Code\" field.");
															theForm.Contact_ZipCode.focus();
															return (false);
														  }
														
														  if (theForm.Contact_ZipCode.value.length < 1)
														  {
															alert("Please enter at least 1 characters in the \"Postal Code\" field.");
															theForm.Contact_ZipCode.focus();
															return (false);
														  }

														  if (theForm.Contact_ZipCode.value.length > 12)
														  {
															alert("Please enter at most 12 characters in the \"Postal Code\" field.");
															theForm.Contact_ZipCode.focus();
															return (false);
														  }
														
														  if (theForm.Contact_WorkPhone.value == "")
														  {
															alert("Please enter a value for the \"Work Phone\" field.");
															theForm.Contact_WorkPhone.focus();
															return (false);
														  }
														
														  if (theForm.Contact_WorkPhone.value.length < 1)
														  {
															alert("Please enter at least 1 characters in the \"Work Phone\" field.");
															theForm.Contact_WorkPhone.focus();
															return (false);
														  }
														
														  if (theForm.Contact_WorkPhone.value.length > 25)
														  {
															alert("Please enter at most 25 characters in the \"Work Phone\" field.");
															theForm.Contact_WorkPhone.focus();
															return (false);
														  }
														
														  if (theForm.Contact_Email.value == "")
														  {
															alert("Please enter a value for the \"E-Mail\" field.");
															theForm.Contact_Email.focus();
															return (false);
														  }
														
														  if (theForm.Contact_Email.value.length < 2)
														  {
															alert("Please enter at least 2 characters in the \"E-Mail\" field.");
															theForm.Contact_Email.focus();
															return (false);
														  }

														  if (theForm.Contact_Email.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"E-Mail\" field.");
															theForm.Contact_Email.focus();
															return (false);
														  }
														
														  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzSZsz&#8364;&#8218;&#402;<ETH>&#8222;&#8230;&#8224;Y<THORN>&#710;&#8225;&#8240;&#8249;&#352;&#338;&#381;&#8216;&#8220;&#8217;&#8221;&#8226;<eth>&#8211;&#732;&#8212;&#8482;&#8250;&#353;&#339;&#382;&#376;y<thorn>0123456789-@.-_ \t\r\n\f";
														  var checkStr = theForm.Contact_Email.value;
														  var allValid = true;
														  for (i = 0;  i < checkStr.length;  i++)
														  {
															ch = checkStr.charAt(i);
															for (j = 0;  j < checkOK.length;  j++)
															  if (ch == checkOK.charAt(j))
																break;
															if (j == checkOK.length)
															{
															  allValid = false;
															  break;
															}
														  }
														  if (!allValid)
														  {
															alert("Please enter only letter, digit, whitespace and \"@.-_\" characters in the \"E-Mail\" field.");
															theForm.Contact_Email.focus();
															return (false);
														  }
														  return (true);
														}
														
														
														function FrontPage_Form1_Validator(theForm)
														{
														
														  if (theForm.FirstName.value == "")
														  {
															alert("Please enter a value for the \"FirstName\" field.");
															theForm.FirstName.focus();
															return (false);
														  }
														
														  if (theForm.FirstName.value.length < 1)
														  {
															alert("Please enter at least 1 characters in the \"FirstName\" field.");
															theForm.FirstName.focus();
															return (false);
														  }
														
														  if (theForm.FirstName.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"FirstName\" field.");
															theForm.FirstName.focus();
															return (false);
														  }
														
														  if (theForm.LastName.value == "")
														  {
															alert("Please enter a value for the \"LastName\" field.");
															theForm.LastName.focus();
															return (false);
														  }
														
														  if (theForm.LastName.value.length < 1)
														  {
															alert("Please enter at least 1 characters in the \"LastName\" field.");
															theForm.LastName.focus();
															return (false);
														  }
														
														  if (theForm.LastName.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"LastName\" field.");
															theForm.LastName.focus();
															return (false);
														  }
														
														  if (theForm.CompanyName.value == "")
														  {
															alert("Please enter a value for the \"CompanyName\" field.");
															theForm.CompanyName.focus();
															return (false);
														  }
														
														  if (theForm.CompanyName.value.length < 3)
														  {
															alert("Please enter at least 3 characters in the \"CompanyName\" field.");
															theForm.CompanyName.focus();
															return (false);
														  }
														
														  if (theForm.CompanyName.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"CompanyName\" field.");
															theForm.CompanyName.focus();
															return (false);
														  }
														
														  if (theForm.Address1.value == "")
														  {
															alert("Please enter a value for the \"Address1\" field.");
															theForm.Address1.focus();
															return (false);
														  }
														
														  if (theForm.Address1.value.length < 1)
														  {
															alert("Please enter at least 1 characters in the \"Address1\" field.");
															theForm.Address1.focus();
															return (false);
														  }
														
														  if (theForm.Address1.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"Address1\" field.");
															theForm.Address1.focus();
															return (false);
														  }
														
														  if (theForm.city.value == "")
														  {
															alert("Please enter a value for the \"city\" field.");
															theForm.city.focus();
															return (false);
														  }
														
														  if (theForm.city.value.length < 1)
														  {
															alert("Please enter at least 1 characters in the \"city\" field.");
															theForm.city.focus();
															return (false);
														  }
														
														  if (theForm.city.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"city\" field.");
															theForm.city.focus();
															return (false);
														  }
														
														  if (theForm.PhoneNumber.value == "")
														  {
															alert("Please enter a value for the \"PhoneNumber\" field.");
															theForm.PhoneNumber.focus();
															return (false);
														  }
														
														  if (theForm.PhoneNumber.value.length < 10)
														  {
															alert("Please enter at least 10 characters in the \"PhoneNumber\" field.");
															theForm.PhoneNumber.focus();
															return (false);
														  }
														
														  if (theForm.PhoneNumber.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"PhoneNumber\" field.");
															theForm.PhoneNumber.focus();
															return (false);
														  }
														
														  if (theForm.EmailAddress.value == "")
														  {
															alert("Please enter a value for the \"EmailAddress\" field.");
															theForm.EmailAddress.focus();
															return (false);
														  }
														
														  if (theForm.EmailAddress.value.length < 1)
														  {
															alert("Please enter at least 1 characters in the \"EmailAddress\" field.");
															theForm.EmailAddress.focus();
															return (false);
														  }
														
														  if (theForm.EmailAddress.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"EmailAddress\" field.");
															theForm.EmailAddress.focus();
															return (false);
														  }
														
														  if (theForm.EmailAddress.value == "")
														  {
															alert("Please enter a value for the \"EmailAddress\" field.");
															theForm.EmailAddress.focus();
															return (false);
														  }
														
														  if (theForm.EmailAddress.value.length < 1)
														  {
															alert("Please enter at least 1 characters in the \"EmailAddress\" field.");
															theForm.EmailAddress.focus();
															return (false);
														  }
														
														  if (theForm.EmailAddress.value.length > 100)
														  {
															alert("Please enter at most 100 characters in the \"EmailAddress\" field.");
															theForm.EmailAddress.focus();
															return (false);
														  }
														  return (true);
														}
