<!--
		function Validator1(myForm1)
		{

		  if (myForm1.strName.value == "")
		  {
		    alert("Please enter a value for the \"Your Name\" field.");
		    myForm1.strName.focus();
		    return (false);
		  }

		  if (myForm1.strCompanyName.value == "")
		  {
		    alert("Please enter a value for the \"Company Name\" field.");
		    myForm1.strCompanyName.focus();
		    return (false);
		  }

		  if (myForm1.strPhoneNumber.value == "")
		  {
		    alert("Please enter a value for the \"Phone Number\" field.");
		    myForm1.strPhoneNumber.focus();
		    return (false);
		  }

		  if (myForm1.strEmailAddress.value == "")
		  {
		    alert("Please enter a value for the \"Email Address\" field.");
		    myForm1.strEmailAddress.focus();
		    return (false);
		  }
		  return (true);
		}
				
				
				
				
				
		function Validator2(myForm2)
		{

		  if (myForm2.intBusStartMonth.value == "")
		  {
		    alert("Please enter the \"Month business was started\"");
		    myForm2.intBusStartMonth.focus();
		    return (false);
		  }

		  if (myForm2.intBusStartMonth.value.length < 1)
		  {
		    alert("Please enter at least 1 characters in for the \"Month business was started\"");
		    myForm2.intBusStartMonth.focus();
		    return (false);
		  }

		  if (myForm2.intBusStartMonth.value.length > 2)
		  {
		    alert("Please enter at most 2 characters in the \"Month business was started?\" field.");
		    myForm2.intBusStartMonth.focus();
		    return (false);
		  }

		  var checkOK = "0123456789-.";
		  var checkStr = myForm2.intBusStartMonth.value;
		  var allValid = true;
		  var decPoints = 0;
		  var allNum = "";
		  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 (ch == ".")
		    {
		      allNum += ".";
		      decPoints++;
		    }
		    else
		      allNum += ch;
		  }
		  if (!allValid)
		  {
		    alert("Please enter only digit characters in the \"Month business was started?\" field.");
		    myForm2.intBusStartMonth.focus();
		    return (false);
		  }

		  if (decPoints > 1)
		  {
		    alert("Please enter a valid number in the \"Month business was started?\" field.");
		    myForm2.intBusStartMonth.focus();
		    return (false);
		  }

		  var chkVal = allNum;
		  var prsVal = parseFloat(allNum);
		  if (chkVal != "" && !(prsVal > "0" && prsVal < "13"))
		  {
		    alert("Please enter a value greater than \"0\" and less than \"13\" in the \"Year business was started?\" field.");
		    myForm2.intBusStartMonth.focus();
		    return (false);
		  }

		  if (myForm2.intBusStartYear.value == "")
		  {
		    alert("Please enter the \"Year business was started\"");
		    myForm2.intBusStartYear.focus();
		    return (false);
		  }

		  if (myForm2.intBusStartYear.value.length < 2)
		  {
		    alert("Please enter at least 2 characters in the \"Year business was started?\" field.");
		    myForm2.intBusStartYear.focus();
		    return (false);
		  }

		  if (myForm2.intBusStartYear.value.length > 4)
		  {
		    alert("Please enter at most 4 characters in the \"Year business was started?\" field.");
		    myForm2.intBusStartYear.focus();
		    return (false);
		  }

		  var checkOK = "0123456789-.,";
		  var checkStr = myForm2.intBusStartYear.value;
		  var allValid = true;
		  var decPoints = 0;
		  var allNum = "";
		  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 (ch == ".")
		    {
		      allNum += ".";
		      decPoints++;
		    }
		    else if (ch != ",")
		      allNum += ch;
		  }
		  if (!allValid)
		  {
		    alert("Please enter only digit characters in the \"Year business was started?\" field.");
		    myForm2.intBusStartYear.focus();
		    return (false);
		  }

		  if (decPoints > 1)
		  {
		    alert("Please enter a valid number in the \"Year business was started?\" field.");
		    myForm2.intBusStartYear.focus();
		    return (false);
		  }

		  if (myForm2.strIndustry.value == "")
		  {
		    alert("Please enter a value for the \"What is the industry your business is in?\" field.");
		    myForm2.strIndustry.focus();
		    return (false);
		  }

		  if (myForm2.intNumEmps.value == "")
		  {
		    alert("Please enter a value for the \"Number of employees in the business\" field.");
		    myForm2.intNumEmps.focus();
		    return (false);
		  }

		  var checkOK = "0123456789-.";
		  var checkStr = myForm2.intNumEmps.value;
		  var allValid = true;
		  var decPoints = 0;
		  var allNum = "";
		  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 (ch == ".")
		    {
		      allNum += ".";
		      decPoints++;
		    }
		    else
		      allNum += ch;
		  }
		  if (!allValid)
		  {
		    alert("Please enter only digit characters in the \"Number of employees in the business\" field.");
		    myForm2.intNumEmps.focus();
		    return (false);
		  }

		  if (decPoints > 1)
		  {
		    alert("Please enter a valid number in the \"Number of employees in the business\" field.");
		    myForm2.intNumEmps.focus();
		    return (false);
		  }

		  if (myForm2.strBusType.selectedIndex < 0)
		  {
		    alert("Please select one of the \"Business entity/structure type\" options.");
		    myForm2.strBusType.focus();
		    return (false);
		  }

		  if (myForm2.strBusType.selectedIndex == 0)
		  {
		    alert("The first \"Business entity/structure type\" option is not a valid selection.  Please choose one of the other options.");
		    myForm2.strBusType.focus();
		    return (false);
		  }

		  if (myForm2.strAvgMoRev.value == "")
		  {
		    alert("Please enter a value for the \"Average gross monthly revenue\" field. Or enter \"0\".");
		    myForm2.strAvgMoRev.focus();
		    return (false);
		  }

		  if (myForm2.strAvgMoRev.value.length < 1)
		  {
		    alert("Please enter at least 1 characters in the \"Average gross monthly revenue\" field.");
		    myForm2.strAvgMoRev.focus();
		    return (false);
		  }


		  if (myForm2.strMoRevVMC.value == "")
		  {
		    alert("Please enter a value for the \"Monthly revenue from Visa/MC receipts\" field. Or enter \"0\".");
		    myForm2.strMoRevVMC.focus();
		    return (false);
		  }

		  if (myForm2.strMoRevVMC.value.length < 1)
		  {
		    alert("Please enter at least 1 characters in the \"Monthly revenue from Visa/MC receipts\" field.");
		    myForm2.strMoRevVMC.focus();
		    return (false);
		  }

		  if (myForm2.strAmtBusReceivables.value == "")
		  {
		    alert("Please enter a value for the \"Amount of outstanding invoices with customers\" field. Or enter \"0\".");
		    myForm2.strAmtBusReceivables.focus();
		    return (false);
		  }

		  if (myForm2.strAmtBusReceivables.value.length < 1)
		  {
		    alert("Please enter at least 1 characters in the \"Amount of outstanding invoices with customers\" field.");
		    myForm2.strAmtBusReceivables.focus();
		    return (false);
		  }

		  if (myForm2.strAmtPurchOrders.value == "")
		  {
		    alert("Please enter a value for the \"Current amount of existing purchase orders\" field. Or enter \"0\".");
		    myForm2.strAmtPurchOrders.focus();
		    return (false);
		  }

		  if (myForm2.strAmtPurchOrders.value.length < 1)
		  {
		    alert("Please enter at least 1 characters in the \"Current amount of existing purchase orders\" field.");
		    myForm2.strAmtPurchOrders.focus();
		    return (false);
		  }

		  if (myForm2.strValueEquiptOwned.value == "")
		  {
		    alert("Please enter a value for the \"Total value of equipment owned outright\" field. Or enter \"0\".");
		    myForm2.strValueEquiptOwned.focus();
		    return (false);
		  }

		  if (myForm2.strValueEquiptOwned.value.length < 1)
		  {
		    alert("Please enter at least 1 characters in the \"Total value of equipment owned outright\" field.");
		    myForm2.strValueEquiptOwned.focus();
		    return (false);
		  }

		  if (myForm2.strValueOwnedCommRealEstate.value == "")
		  {
		    alert("Please enter a value for the \"Value of owned commercial real estate\" field. Or enter \"0\".");
		    myForm2.strValueOwnedCommRealEstate.focus();
		    return (false);
		  }

		  if (myForm2.strValueOwnedCommRealEstate.value.length < 1)
		  {
		    alert("Please enter at least 1 characters in the \"Value of owned commercial real estate\" field.");
		    myForm2.strValueOwnedCommRealEstate.focus();
		    return (false);
		  }


		  var radioSelected = false;
		  for (i = 0;  i < myForm2.ysnPrincipalHomeOwners.length;  i++)
		  {
		    if (myForm2.ysnPrincipalHomeOwners[i].checked)
		        radioSelected = true;
		  }
		  if (!radioSelected)
		  {
		    alert("Please select one of the \"Are any of the principals home owners?\" options.");
		    return (false);
		  }

		  if (myForm2.strPrincipalResRealEstateValue.value == "")
		  {
		    alert("Please enter a value for the \"Principal's residential real estate value\" field. Or enter \"0\".");
		    myForm2.strPrincipalResRealEstateValue.focus();
		    return (false);
		  }

		  if (myForm2.strPrincipalResRealEstateValue.value.length < 1)
		  {
		    alert("Please enter at least 1 characters in the \"Principal's residential real estate value\" field.");
		    myForm2.strPrincipalResRealEstateValue.focus();
		    return (false);
		  }


		  if (myForm2.strAmtOwedResRealEstate.value == "")
		  {
		    alert("Please enter a value for the \"Amount owed against residential real estate\" field. Or enter \"0\".");
		    myForm2.strAmtOwedResRealEstate.focus();
		    return (false);
		  }

		  if (myForm2.strAmtOwedResRealEstate.value.length < 1)
		  {
		    alert("Please enter at least 1 characters in the \"Amount owed against residential real estate\" field.");
		    myForm2.strAmtOwedResRealEstate.focus();
		    return (false);
		  }


		  if (myForm2.strFicoScore.value == "")
		  {
		    alert("Please enter a value for the \"Estimate principal's FICO score\" field. Or enter \"000\".");
		    myForm2.strFicoScore.focus();
		    return (false);
		  }

		  if (myForm2.strFicoScore.value.length < 3)
		  {
		    alert("Please enter at least 3 characters in the \"Estimate principal's FICO score\" field.");
		    myForm2.strFicoScore.focus();
		    return (false);
		  }

		  if (myForm2.strFicoScore.value.length > 3)
		  {
		    alert("Please enter at most 3 characters in the \"Estimate principal's FICO score\" field.");
		    myForm2.strFicoScore.focus();
		    return (false);
		  }


		  var radioSelected = false;
		  for (i = 0;  i < myForm2.ysnInsHealth.length;  i++)
		  {
		    if (myForm2.ysnInsHealth[i].checked)
		        radioSelected = true;
		  }
		  if (!radioSelected)
		  {
		    alert("Please select one of the \"What insurance is currently being carried: Health\" options.");
		    return (false);
		  }

		  var radioSelected = false;
		  for (i = 0;  i < myForm2.ysnInsBusiness.length;  i++)
		  {
		    if (myForm2.ysnInsBusiness[i].checked)
		        radioSelected = true;
		  }
		  if (!radioSelected)
		  {
		    alert("Please select one of the \"What insurance is currently being carried: Business\" options.");
		    return (false);
		  }

		  var radioSelected = false;
		  for (i = 0;  i < myForm2.ysnInsAuto.length;  i++)
		  {
		    if (myForm2.ysnInsAuto[i].checked)
		        radioSelected = true;
		  }
		  if (!radioSelected)
		  {
		    alert("Please select one of the \"What insurance is currently being carried: Auto\" options.");
		    return (false);
		  }

		  var radioSelected = false;
		  for (i = 0;  i < myForm2.ysnOwnPrivNotes.length;  i++)
		  {
		    if (myForm2.ysnOwnPrivNotes[i].checked)
		        radioSelected = true;
		  }
		  if (!radioSelected)
		  {
		    alert("Please select one of the \"Do you own/hold any private notes on real estate?\" options.");
		    return (false);
		  }

		  if (myForm2.strValueInvestments.value == "")
		  {
		    alert("Please enter a value for the \"Total value of investment accounts (IRAs,401ks)\" field. Or enter \"0\".");
		    myForm2.strValueInvestments.focus();
		    return (false);
		  }

		  return (true);
		}
		//-->