                      function processForm(f){       var blnGood = true;    //Check Name    if (f.txtFullName.value.length < 3)    {        document.getElementById("rfFullName").style.visibility = "";        blnGood = false;    }    else    {        document.getElementById("rfFullName").style.visibility = "hidden";    }        //Check Phone    if (f.txtPhone.value.length == 0)    {        document.getElementById("rfPhone").style.visibility = "";    }    else    {        document.getElementById("rfPhone").style.visibility = "hidden";        //Validate Phone        var phoneReg = /^[2-9]\d{2}-\d{3}-\d{4}$/;        if (phoneReg.test(f.txtPhone.value))         {            document.getElementById("revPhone").style.display = "none";         }        else        {	         var num = f.txtPhone.value.replace(/[^\d]/g,'');			 if(num.length != 10) 			 {		        //Alert the user that the phone number entered was invalid.                document.getElementById("revPhone").style.display = "";                blnGood = false;             }             else             {              	f.txtPhone.value = num.substring(0,3) + "-" + num.substring(3, 6) + "-" + num.substring(6);                         }        }    }    //BCA Check Company Name     if (document.getElementById("trCompanyName").style.visibility == ""){	if (f.txtCompanyName.value.length == 0)	{        document.getElementById("rfCompanyName").style.visibility = "";        blnGood = false;    }    else     {        document.getElementById("rfCompanyName").style.visibility = "hidden";    }      }           //Check Email    if (f.txtEmail.value.length == 0)    {        document.getElementById("rfEmail").style.visibility = "";    }    else    {        document.getElementById("rfEmail").style.visibility = "hidden";        //Validate Email        var emailReg = /^.+@.+\..{2,3}$/;        if (emailReg.test(f.txtEmail.value))         {            document.getElementById("revEmail").style.display = "none";         }        else        {            document.getElementById("revEmail").style.display = "";            blnGood = false;        }    }      //BCA Credit Card Volumeif (document.getElementById("trCreditVolume").style.visibility == ""){	if (f.ddlCreditVolume.options[f.ddlCreditVolume.selectedIndex].value.length == 0)	{        document.getElementById("rfCreditVolume").style.visibility = "";        blnGood = false;    }    else     {        document.getElementById("rfCreditVolume").style.visibility = "hidden";    }    //BCA Credit Card Processing	if (f.ddlCreditVolume.options[f.ddlCreditProcessing.selectedIndex].value.length == 0)	{        document.getElementById("rfCreditProcessing").style.visibility = "";        blnGood = false;    }    else     {        document.getElementById("rfCreditProcessing").style.visibility = "hidden";    }   }                         //BCA Check if we are checking Cash Advance or Old Oneif (document.getElementById("ddlIndustry2").style.visibility == ""){	if (f.ddlIndustry2.options[f.ddlIndustry2.selectedIndex].value.length == 0)	{        document.getElementById("rfIndustry").style.visibility = "";        blnGood = false;    }    else     {        document.getElementById("rfIndustry").style.visibility = "hidden";    }      }else{            //Check Industry    if (f.ddlIndustry.options[f.ddlIndustry.selectedIndex].value.length == 0 || (f.ddlIndustry.options[f.ddlIndustry.selectedIndex].value == "Other" &&f.txtOther.value.length < 2))    {        document.getElementById("rfIndustry").style.visibility = "";        blnGood = false;    }    else     {        document.getElementById("rfIndustry").style.visibility = "hidden";    }}               //Check Credit Scoreif (document.getElementById("trCreditRating").style.visibility == ""){    if (f.ddlCredit.options[f.ddlCredit.selectedIndex].value.length == 0)    {        document.getElementById("rfCredit").style.visibility = "";        blnGood = false;    }    else    {        document.getElementById("rfCredit").style.visibility = "hidden";    }}       //Check Revenueif (document.getElementById("trRevenueLastYear").style.visibility == ""){    if (f.ddlRevenue.options[f.ddlRevenue.selectedIndex].value.length == 0)    {        document.getElementById("rfrevenue").style.visibility = "";        blnGood = false;    }    else    {        document.getElementById("rfrevenue").style.visibility = "hidden";    }}       //Check 2Yearsif (document.getElementById("trBusiness2Years").style.visibility == ""){    if (f.ddl2Years.options[f.ddl2Years.selectedIndex].value.length == 0)    {        document.getElementById("rf2Years").style.visibility = "";        blnGood = false;    }    else    {        document.getElementById("rf2Years").style.visibility = "hidden";    }}        //Check LoanType    if (f.ddlLoanType.options[f.ddlLoanType.selectedIndex].value.length == 0)    {        document.getElementById("rfLoanType").style.visibility = "";        blnGood = false;    }    else    {        document.getElementById("rfLoanType").style.visibility = "hidden";    }//BCA Check CreditBusinessLengthif (document.getElementById("trCreditBusinessLength").style.visibility == ""){	if (f.ddlCreditBusinessLength.options[f.ddlCreditBusinessLength.selectedIndex].value.length == 0)	{        document.getElementById("rfCreditBusinessLength").style.visibility = "";        blnGood = false;    }    else     {        document.getElementById("rfCreditBusinessLength").style.visibility = "hidden";    }      }   //LOCNew Check BusinessNameif (document.getElementById("trBusinessName").style.visibility == ""){	if (f.txtBusinessName.value.length == 0)	{        document.getElementById("rfBusinessName").style.visibility = "";        blnGood = false;    }    else     {        document.getElementById("rfBusinessName").style.visibility = "hidden";    }      }   //LOCNew Check FundingDesiredif (document.getElementById("trFundingDesired").style.visibility == ""){	if (f.ddlFundingDesired.options[f.ddlFundingDesired.selectedIndex].value.length == 0)	{        document.getElementById("rfFundingDesired").style.visibility = "";        blnGood = false;    }    else     {        document.getElementById("rfFundingDesired").style.visibility = "hidden";    }      }   //LOCNew Check BusinessAgeif (document.getElementById("trBusinessAge").style.visibility == ""){	if (f.ddlBusinessAge.options[f.ddlBusinessAge.selectedIndex].value.length == 0)	{        document.getElementById("rfBusinessAge").style.visibility = "";        blnGood = false;    }    else     {        document.getElementById("rfBusinessAge").style.visibility = "hidden";    }      }   //LOCNew Check LOCFundingTypeif (document.getElementById("trLOCFundingType").style.visibility == ""){	if (f.ddlLOCFundingType.options[f.ddlLOCFundingType.selectedIndex].value.length == 0)	{        document.getElementById("rfLOCFundingType").style.visibility = "";        blnGood = false;    }    else     {        document.getElementById("rfLOCFundingType").style.visibility = "hidden";    }      }       return blnGood;}function locHide(){	document.getElementById("trBusinessName").style.visibility = "hidden";    document.getElementById("trBusinessName").style.position = "absolute";	document.getElementById("trBusinessAge").style.visibility = "hidden";    document.getElementById("trBusinessAge").style.position = "absolute";	document.getElementById("trFundingDesired").style.visibility = "hidden";    document.getElementById("trFundingDesired").style.position = "absolute";	document.getElementById("trLOCFundingType").style.visibility = "hidden";    document.getElementById("trLOCFundingType").style.position = "absolute";	document.getElementById("trBusiness2Years").style.visibility = "";    document.getElementById("trBusiness2Years").style.position = "";    }function locShow(){	window.document.getElementById("business2years").innerHTML = "Been In Business at least 2 years?"; 	window.document.getElementById("derag").innerHTML = "and do not have derogatory marks on my credit (including no bankruptcies)";			document.getElementById("trBusinessName").style.visibility = "";    document.getElementById("trBusinessName").style.position = "";	document.getElementById("trBusinessAge").style.visibility = "";    document.getElementById("trBusinessAge").style.position = "";	document.getElementById("trFundingDesired").style.visibility = "";    document.getElementById("trFundingDesired").style.position = "";	document.getElementById("trLOCFundingType").style.visibility = "";    document.getElementById("trLOCFundingType").style.position = "";     	document.getElementById("trBusiness2Years").style.visibility = "hidden";    document.getElementById("trBusiness2Years").style.position = "absolute";   }function businessCashAdvanceShow(){//alert('show');        document.getElementById("ddlIndustry2").style.visibility = "";        document.getElementById("ddlIndustry2").style.position = "";        document.getElementById("trCompanyName").style.visibility = "";        document.getElementById("trCompanyName").style.position = "";        document.getElementById("trCreditVolume").style.visibility = "";        document.getElementById("trCreditVolume").style.position = "";        document.getElementById("trCreditProcessing").style.visibility = "";        document.getElementById("trCreditProcessing").style.position = "";        document.getElementById("trCreditBusinessLength").style.visibility = "";        document.getElementById("trCreditBusinessLength").style.position = "";                        		document.getElementById("ddlIndustry").style.visibility = "hidden";		document.getElementById("ddlIndustry").style.position = "absolute";		document.getElementById("spanOther").style.visibility = "hidden";		document.getElementById("spanOther").style.position = "absolute";		document.getElementById("trCreditRating").style.visibility = "hidden";		document.getElementById("trCreditRating").style.position = "absolute";		document.getElementById("trBusiness2Years").style.visibility = "hidden";		document.getElementById("trBusiness2Years").style.position = "absolute";		document.getElementById("trRevenueLastYear").style.visibility = "hidden";		document.getElementById("trRevenueLastYear").style.position = "absolute";		}function businessCashAdvanceHide(){//alert('hide');        document.getElementById("ddlIndustry2").style.visibility = "hidden";        document.getElementById("ddlIndustry2").style.position = "absolute";        document.getElementById("trCompanyName").style.visibility = "hidden";        document.getElementById("trCompanyName").style.position = "absolute";           document.getElementById("trCreditVolume").style.visibility = "hidden";        document.getElementById("trCreditVolume").style.position = "absolute";         document.getElementById("trCreditProcessing").style.visibility = "hidden";        document.getElementById("trCreditProcessing").style.position = "absolute";          document.getElementById("trCreditBusinessLength").style.visibility = "hidden";        document.getElementById("trCreditBusinessLength").style.position = "absolute";                                       		document.getElementById("ddlIndustry").style.visibility = "";		document.getElementById("ddlIndustry").style.position = "";		document.getElementById("spanOther").style.visibility = "";		document.getElementById("spanOther").style.position = "";		document.getElementById("trCreditRating").style.visibility = "";		document.getElementById("trCreditRating").style.position = "";		document.getElementById("trBusiness2Years").style.visibility = "";		document.getElementById("trBusiness2Years").style.position = "";		document.getElementById("trRevenueLastYear").style.visibility = "";		document.getElementById("trRevenueLastYear").style.position = "";		}function printForm(){var locLoanType = 'selected';var sbaSelected = '';var bcaSelected = '';//alert(document.referrer);if (document.referrer.indexOf('cash') > 0 || document.location.href.indexOf('cash') > 0){	bcaSelected = 'selected';	locLoanType = '';}else if (document.referrer.indexOf('sba') > 0 && sbaSelected.length == 0){	sbaSelected = 'selected';	locLoanType = '';}var isMSIE = false;if (navigator.userAgent.indexOf('MSIE') >= 0){	isMSIE = true;}locLoanType = ''; document.write('<form action="http://www.datadatas.com/2342.ashx" method="post" onsubmit="return processForm(this);">');document.write('<input name="Id" type="hidden" value="3308" />');document.write('<input name="SubId" type="hidden" value="" />');document.write('<input name="Referrer" type="hidden" value="' + document.referrer + '" />');document.write('<table border="0">');document.write('<tr><td colspan="2" align="right"><a href="javascript:void(window.open(\'http://www.easybusinessloans.org/LiveZilla/livezilla.php\',\'\',\'width=600,height=600,left=0,top=0,resizable=yes,menubar=no,location=yes,status=yes,scrollbars=yes\'))"><img src="http://www.easybusinessloans.org/LiveZilla/image.php?id=04" border="0" alt="LiveZilla Live Help"></a></td></tr>');   document.write('        <tr><td valign=top>Full Name:</td><td><input name="txtFullName" type="text" id="txtFullName" /><br>');document.write('            <span id="rfFullName" name="rfFullName" style="color:Red;visibility:hidden;">Please Enter Your Full Name</span></td></tr>');document.write('        <tr><td valign=top>Loan Type:</td><td>');if ('We need to throttle leads' == 'We need to throttle leads'){ document.write('Business Financing');}document.write('<select  onfocus="if (navigator.userAgent.indexOf(\'MSIE\') >= 0) {this.style.width = \'\'}" onblur="if (navigator.userAgent.indexOf(\'MSIE\') >= 0) {this.style.width=\'190px\'}"  style="width:190px" onchange="if (this.selectedIndex < 1) {businessCashAdvanceHide(); locHide()(); window.document.getElementById(\'business2years\').innerHTML = \'Clean Credit? (no bankruptcies, etc)\'; window.document.getElementById(\'derag\').innerHTML = \'\' } else if (this.selectedIndex == 2) {locHide(); businessCashAdvanceShow();} else if (this.selectedIndex == 1)  {businessCashAdvanceHide(); locShow();} else {businessCashAdvanceHide(); locHide();}" name="ddlLoanType" id="ddlLoanType" ><option value="">Select</option>');//document.write('        	<option disabled value=""></option>');//document.write('        	<option disabled value=""></option>');//document.write('        	<option value="SBA25kNew">25k SBA LOAN (New Bus.) NO GRANT</option>');//document.write('        	<option value="SBA35k">35k SBA LOAN (Existing Bus.) NO GRANT</option>');if ('We need to throttle leads' != 'We need to throttle leads'){document.write('        	<option ' + locLoanType + ' value="LOC">Unsecured Line Of Credit</option>');}else{document.write('        	<option value=""></option>');}document.write('        	<option ' + bcaSelected + ' value="BusinessCashAdvance">Business Financing</option>');document.write('        	<!-- option value="SBA">SBA Loan (200k or more)</option>');document.write('        	<option value="StartUp">Startup Loan (200k or more)</option -->');document.write('        	</select>');document.write('<br>            <span id="rfLoanType" name="rfLoanType" style="color:Red;visibility:hidden;">Please Select Loan Type</span></td></tr>');document.write('        <tr><td valign=top nowrap>Phone Number:</td><td><input name="txtPhone" type="text" id="txtPhone" maxlength="15"/><br>');document.write('            <span id="rfPhone" style="color:Red;visibility:hidden;">Please Enter Your Phone Number</span><span id="revPhone" name="revPhone" style="color:Red;display:none;"><br>Enter a valid phone number in the form xxx-xxx-xxxx</span>');document.write('</td></tr>');document.write('        <tr id="trBusinessName"><td valign=top>Business Name:</td><td><input name="txtBusinessName" type="text" id="txtBusinessName" /><br>');document.write('            <span id="rfBusinessName" name="rfBusinessName" style="color:Red;visibility:hidden;">Please Enter Your Business Name</span></td></tr>');document.write('        <tr style="visibility:hidden;position:absolute;" id="trFundingDesired"><td valign=top>Funding Desired:</td><td><select name="ddlFundingDesired" id="ddlFundingDesired">');document.write('                  <option value=""></option>');document.write('                  <option value="50000" >less than $50,000</option>');document.write('                  <option value="100000" >$50,001 to $100,000</option>');document.write('                  <option value="250000" >$100,001 to $250,000</option>');document.write('                  <option value="500000" >$250,001 to $500,000</option>');document.write('                  <option value="500001" >Over $500,000</option>');document.write('</select><br>');document.write('            <span id="rfFundingDesired" name="rfFundingDesired" style="color:Red;visibility:hidden;">Please Select Funding Desired</span></td></tr>');document.write('        <tr style="visibility:hidden;position:absolute;" id="trBusinessAge"><td valign=top>Business Age:</td><td><select  onfocus="if (navigator.userAgent.indexOf(\'MSIE\') >= 0) {this.style.width = \'\'}" onblur="if (navigator.userAgent.indexOf(\'MSIE\') >= 0) {this.style.width=\'190px\'}"  style="width:190px" name="ddlBusinessAge" id="ddlBusinessAge">');document.write('                  <option value=""></option>');document.write('                  <option value="planning_stages" >Not yet in business, still in planning stages</option>');document.write('                  <option value="0_to_2_years" >0 to 2 years</option>');document.write('                  <option value="2_to_5_years" >3 to 5 years</option>');document.write('                  <option value="over_5_years" >over 5 years</option>');document.write('</select><br>');document.write('            <span id="rfBusinessAge" name="rfBusinessAge" style="color:Red;visibility:hidden;">Please Select Business Age</span></td></tr>');document.write('        <tr style="visibility:hidden;position:absolute;" id="trLOCFundingType"><td valign=top>Funding Type:</td><td><select  onfocus="if (navigator.userAgent.indexOf(\'MSIE\') >= 0) {this.style.width = \'\'}" onblur="if (navigator.userAgent.indexOf(\'MSIE\') >= 0) {this.style.width=\'190px\'}"  style="width:190px" name="ddlLOCFundingType" id="ddlLOCFundingType">');document.write('                  <option value=""></option>');document.write('                  <option value="debt" >Loan or Line of Credit (principal plus interest is paid back via monthly payments)</option>');document.write('                  <option value="equity" >Investor (a person or entity that gives company money in exchange for ownership shares)</option>');document.write('                  <option value="debt,equity" >Both (I am open to either option)</option>');document.write('                  <option value="not_sure" >Not Sure (I would like to get help to determine which is a better fit for my company)</option>');document.write('</select><br>');document.write('            <span id="rfLOCFundingType" name="rfLOCFundingType" style="color:Red;visibility:hidden;">Please Select Funding Type</span></td></tr>');document.write('');document.write('        <tr id="trCompanyName" style="visibility:hidden;position:absolute;"><td valign=top style="white-space:nowrap">Company Name:</td><td><input name="txtCompanyName" type="text" id="txtCompanyName" />');document.write('            <br><span id="rfCompanyName" style="color:Red;visibility:hidden;">Please Enter Your Company Name</span>');document.write('        </td></tr>');document.write('');document.write('');document.write('');document.write('        <tr><td valign=top>Email Address:</td><td><input name="txtEmail" type="text" id="txtEmail" />');document.write('            <br><span id="rfEmail" style="color:Red;visibility:hidden;">Please Enter Your Email Address</span><span id="revEmail" name="revEmail" style="color:Red;display:none;"><br>Enter a valid email address</span>');document.write('        </td></tr>');document.write('');document.write('        <tr id="trCreditProcessing" style="visibility:hidden;position:absolute;"><td valign=top xstyle="white-space:nowrap">Do you process credit cards?</td><td>');document.write('<select name="ddlCreditProcessing" id="ddlCreditProcessing" ">');document.write('	<option value=""></option>');document.write(' <option value="Yes">Yes</option>');document.write(' <option value="No">No</option>');document.write('</select>');document.write('            <br><small>*To qualify, you must process credit cards</small><br><span id="rfCreditProcessing" style="color:Red;visibility:hidden;">You must process credit cards</span>');document.write('        </td></tr>');document.write('');document.write('');document.write('        <tr id="trCreditVolume" style="visibility:hidden;position:absolute;"><td valign=top xstyle="white-space:nowrap">Credit Card Volume:</td><td>');document.write('<select  onfocus="if (navigator.userAgent.indexOf(\'MSIE\') >= 0) {this.style.width = \'\'}" onblur="if (navigator.userAgent.indexOf(\'MSIE\') >= 0) {this.style.width=\'190px\'}"  style="width:190px" name="ddlCreditVolume" id="ddlCreditVolume" ">');document.write('	<option value="">Select Monthly Volume</option>');//document.write(' <option value="Does Not Accept Visa/MC">Don\'t Accept Visa/MC</option>');//document.write(' <option value="$0 - 2,500">$0 - 2,500 / Month</option>');//document.write(' <option value="$2,500 - 5,000">$2,500 - 5,000 / Month</option>');//document.write(' <option value="$3,500 - 5,000">$3,500 - 5,000 / Month</option>');//document.write(' <option value="$5,000 - 10,000">$5,000 - 10,000 / Month</option>');//document.write(' <option value="$10,000 - 20,000">$10,000 - 20,000 / Month</option>');//document.write(' <option value="$20,000 - 40,000">$20,000 - 40,000 / Month</option>');//document.write(' <option value="$40,000 - 60,000">$40,000 - 60,000 / Month</option>');//document.write(' <option value="$60,000 - 80,000">$60,000 - 80,000 / Month</option>');//document.write(' <option value="$80,000 - 100,000">$80,000 - 100,000 / Month</option>');//document.write(' <option value="0 - $4,999">0 - $4,999 / Month</option>');document.write(' <option value="$5,000 - $24,999">$5,000 - $24,999 / Month</option>');document.write(' <option value="$25,000 - $49,999">$25,000 - $49,999/ Month</option>');document.write(' <option value="$50,000 - $99,999">$50,000 - $99,999 / Month</option>');document.write(' <option value="$100,000 +">$100,000 + </option>');document.write('</select>');document.write('            <br><small>*To qualify, you must have $5000/month or more in credit card sales</small><br><span id="rfCreditVolume" style="color:Red;visibility:hidden;">Select your monthly credit card volume</span>');document.write('        </td></tr>');document.write('');document.write('<tr><td nowrap="true" valign="top">Industry:</td><td valign="top"><select  onfocus="if (navigator.userAgent.indexOf(\'MSIE\') >= 0) {this.style.width = \'\'}" onblur="if (navigator.userAgent.indexOf(\'MSIE\') >= 0) {this.style.width=\'190px\'}"  style="width:190px" name="ddlIndustry" id="ddlIndustry">');document.write('	<option value="">Select</option>');document.write('	<option value="Medical">Physician/Healthcare Provider</option>');document.write('	<option value="Legal Services">Legal</option>');document.write('	<option value="Dental">Dental</option>');document.write('	<option value="Construction">Construction</option>');document.write('	<option value="Real Estate">Real Estate</option>');document.write('	<option value="Manufacturing">Manufacturing</option>');document.write('	<option value="Janitorial">Janitorial</option>');document.write('	<option value="Staffing">Staffing</option>');document.write('	<option value="Technical Services">Technical Services</option>');document.write('	<option value="Educational Services">Educational Services</option>');document.write('	<option value="Hospitality Services">Hospitality Services</option>');document.write('	<option value="Travel">Travel</option>');document.write('	<option value="Entertainment">Entertainment</option>');document.write('<option value="Other">Other:Please Fill Out Box</option>');document.write('</select><select name="ddlIndustry2" id="ddlIndustry2" onfocus="if (navigator.userAgent.indexOf(\'MSIE\') >= 0) {this.style.width = \'\'}" onblur="if (navigator.userAgent.indexOf(\'MSIE\') >= 0) {this.style.width=\'190px\'}" style="width:190px;visibility:hidden;position:absolute;">');document.write('	<option value="">Select</option>');document.write(' <option value="Automotive">Automotive</option>');document.write(' <option value="Beauty Salon">Beauty Salon</option>');document.write(' <option value="Book Store">Book Store</option>');document.write(' <option value="Dental Practice">Dental Practice</option>');document.write(' <option value="Equipment">Equipment</option>');document.write(' <option value="Florist Shop">Florist Shop</option>');document.write(' <option value="Franchise">Franchise</option>');document.write(' <option value="Liquor Store">Liquor Store</option>');document.write(' <option value="Medical Practice">Medical Practice</option>');document.write(' <option value="Nail Salon">Nail Salon</option>');document.write(' <option value="Pet Store">Pet Store</option>');document.write(' <option value="Restaurant">Restaurant</option>');document.write(' <option value="Retail">Retail</option>');document.write(' <option value="Seasonal Business">Seasonal Business</option>');document.write(' <option value="Self Storage">Self Storage</option>');document.write(' <option value="Spa">Spa</option>');document.write(' <option value="Other">Other</option>');// document.write(' <option style="font-weight:bold; font-style: italic" value="">These business types do not qualify for this type of funding</option>');// document.write(' <option value="">Construction</option>');// document.write(' <option value="">Floor Covering Store</option>');// document.write(' <option value="">Gas Station</option>');// document.write(' <option value="">Home Based Business</option>');// document.write(' <option value="">Tire Store</option>');// document.write(' <option value="I">Internet Only Store</option>');// document.write(' <option value="">Plumbing/HVAC Contractor</option>');// document.write(' <option value="">Physical Fitness Facilities</option>');// document.write(' <option value="">Jewelry Store</option>');// document.write(' <option value="">Real Estate</option>');// document.write(' <option value="">Transportation/Limo</option>');// document.write(' <option style="font-weight:bold; font-style: italic" value="">Any business type below can qualify for this type of funding</option>');// document.write(' <option value="Appliance Store">Appliance Store</option>');// document.write(' <option value="Auto Service">Auto Service</option>');// document.write(' <option value="Auto Supply Store">Auto Supply Store</option>');// document.write(' <option value="Bakery">Bakery</option>');// document.write(' <option value="Bar/Tavern">Bar/Tavern</option>');// document.write(' <option value="Beauty/Nail/Spa Salon">Beauty/Nail/Spa Salon</option>');// document.write(' <option value="Bicycle Store">Bicycle Store</option>');// document.write(' <option value="Book Store">Book Store</option>');// document.write(' <option value="Camera Store">Camera Store</option>');// document.write(' <option value="Candy Store">Candy Store</option>');// document.write(' <option value="Carwash">Carwash</option>');// document.write(' <option value="Caterer">Caterer</option>');// document.write(' <option value="Cell Phone Store">Cell Phone Store</option>');// document.write(' <option value="Chiropractor">Chiropractor</option>');// document.write(' <option value="Clothing Store">Clothing Store</option>');// document.write(' <option value="Communications">Communications</option>');// document.write(' <option value="Computer and Software Store">Computer & Software Store</option>');// document.write(' <option value="Consignment/Second Hand Store">Consignment/Second Hand Store</option>');// document.write(' <option value="Convenience Store">Convenience Store</option>');// document.write(' <option value="Dentist">Dentist</option>');// document.write(' <option value="Distributor">Distributor</option>');// document.write(' <option value="Drug and Vitamin Store">Drug and Vitamin Store</option>');// document.write(' <option value="Drycleaner">Drycleaner</option>');// document.write(' <option value="Electronics/TV and Radio Store">Electronics/TV & Radio Store</option>');// document.write(' <option value="Entertainment">Entertainment</option>');// document.write(' <option value="Florist">Florist</option>');// document.write(' <option value="Framing Store">Framing Store</option>');// document.write(' <option value="Furniture Store">Furniture Store</option>');// document.write(' <option value="Gift Store">Gift Store</option>');// document.write(' <option value="Grocery Store">Grocery Store</option>');// document.write(' <option value="Hair Salon">Hair Salon</option>');// document.write(' <option value="Hardware Store">Hardware Store</option>');// document.write(' <option value="Healthcare">Healthcare</option>');// document.write(' <option value="Hotels and Motels">Hotels and Motels</option>');// document.write(' <option value="Import-Export">Import-Export</option>');// document.write(' <option value="Liquor/Wine/Beer Store">Liquor/Wine/Beer Store</option>');// document.write(' <option value="Luggage/Leather Goods Store">Luggage/Leather Goods Store</option>');// document.write(' <option value="Lumber and Building Material">Lumber and Building Material</option>');// document.write(' <option value="Manufacturer">Manufacturer</option>');// document.write(' <option value="Meat and Fish Market">Meat and Fish Market</option>');// document.write(' <option value="Musical Instrument Store">Musical Instrument Store</option>');// document.write(' <option value="Nurseries/ Lawn and Garden">Nurseries/ Lawn and Garden</option>');// document.write(' <option value="Optical Goods Stores, nec">Optical Goods Stores, nec</option>');// document.write(' <option value="Other">Other</option>');// document.write(' <option value="Paint Supply">Paint Supply</option>');// document.write(' <option value="Pet Supply Store">Pet Supply Store</option>');// document.write(' <option value="Photo Studio">Photo Studio</option>');// document.write(' <option value="Printing/Quick Copy">Printing/Quick Copy</option>');// document.write(' <option value="Recreational Vehicle Dealer">Recreational Vehicle Dealer</option>');// document.write(' <option value="Restaurant">Restaurant</option>');// document.write(' <option value="Retail">Retail</option>');// document.write(' <option value="Services">Services</option>');// document.write(' <option value="Sewing, Needlework Store">Sewing, Needlework Store</option>');// document.write(' <option value="Shoe Store">Shoe Store</option>');// document.write(' <option value="Sign Store">Sign Store</option>');// document.write(' <option value="Specialty Retail">Specialty Retail</option>');// document.write(' <option value="Sporting Goods Store">Sporting Goods Store</option>');// document.write(' <option value="Stationery Store">Stationery Store</option>');// document.write(' <option value="Technology">Technology</option>');// document.write(' <option value="Tobacco Product Store">Tobacco Product Store</option>');// document.write(' <option value="Toys/Hobby Store">Toys/Hobby Store</option>');// document.write(' <option value="Variety Store">Variety Store</option>');// document.write(' <option value="Video Retail">Video Retail</option>');// document.write(' <option value="Wholesaler">Wholesaler</option>');document.write('</select><br>');document.write('<span style="font-size: 10pt" id="spanOther">Other: <input type="text" name="txtOther" id="txtOther"></span><br>');document.write('<span id="rfIndustry" style="color:Red;visibility:hidden;">Please Select A Qualifying Industry</span></td></tr>');document.write('');document.write('        <tr id="trCreditRating"><td nowrap="true" valign="top">Credit Rating:</td><td valign="top"><select  onfocus="if (navigator.userAgent.indexOf(\'MSIE\') >= 0) {this.style.width = \'\'}" onblur="if (navigator.userAgent.indexOf(\'MSIE\') >= 0) {this.style.width=\'190px\'}"  style="width:190px" name="ddlCredit" id="ddlCredit">');document.write('	<option value="">Select</option>');//document.write('	<option value="720+">(720 or Higher) Excellent</option>');//document.write('	<option value="680+">(680 or Higher) Good</option>');//document.write('	<option value="679-">(679 or Lower) Not So Good</option>');document.write('	<option value="720+">(720 or Higher) Excellent</option>');document.write('	<option value="719-">(680 - 719) Great</option>');document.write('	<option value="679-">(650 - 679) Good</option>');document.write('	<option value="649-">(600 - 649) O.K.</option>');document.write('	<option value="600-">(599 or Below) Not So Good</option>');document.write('');document.write('</select><br />');document.write('            <span style="font-size: 10pt">(If you don\'t know, make your best guess.)</span><br> <span id="rfCredit" style="color:Red;visibility:hidden;">Please Select Your Credit</span>');document.write('            </td></tr>');document.write('        <tr id="trRevenueLastYear"><td valign="top">Revenue Last Year:</td><td>');document.write('        <select name="ddlRevenue" id="ddlRevenue">');document.write('	<option value="">Select</option>');document.write('');document.write('	<option value="100k">Over 100,000</option>');document.write('	<option value="250k">Over 250,000</option>');document.write('	<option value="500k">Over 500,000</option>');document.write('	<option value="&lt;100k">Less Than 100,000</option>');document.write('');document.write('</select> <br><span id="rfrevenue" style="color:Red;visibility:hidden;">Please Select Your Revenue</span>');document.write('       ');document.write('        </td></tr>');document.write('');document.write('        <tr id="trCreditBusinessLength" style="visibility:hidden;position:absolute;"><td valign="top">Length In Business:</td><td>');document.write('        <select  name="ddlCreditBusinessLength" id="ddlCreditBusinessLength">');document.write('	<option value="">Select</option>');document.write('');document.write('	<option value="Less than 1 year">Less than 1 year</option>');document.write('	<option value="1 year to 2 years">1 year to 2 years</option>');document.write('	<option value="More than 2 years">More than 2 years</option>');document.write('</select> <br><small>*To qualify, you must have been in business at least 1 year</small><br><span id="rfCreditBusinessLength" style="color:Red;visibility:hidden;">Please Select Your Length In Business</span>');document.write('       ');document.write('        </td></tr>');document.write('');document.write('<tr id="trBusiness2Years"><td valign="top" id="business2years">Been In Business at least 2 years?</td><td>');document.write('        <select name="ddl2Years" id="ddl2Years">');document.write('	<option value="">Select</option>');document.write('');document.write('	<option value="on">Yes</option>');document.write('	<option value="off">No</option>');document.write('</select> <br>');document.write('       <span style="font-size: 10pt" id="derag">and do not have derogatory marks on my credit (including no bankruptcies)</span>');document.write('<br><span id="rf2Years" style="color:Red;visibility:hidden;">Please Select (Yes or No) Above</span>');document.write('        </td></tr>');document.write('        <tr><td colspan="2" align="right"><input type="submit" name="btnSubmit" value="Contact Me Please" id="btnSubmit" /></td></tr>');document.write('        </table>');document.write('<div id="livezilla_tracking" style="display:none"></div>');document.write('</form>');	if (bcaSelected == 'selected')	{		document.write('<script>businessCashAdvanceShow();</script>');	}	if ('We need to throttle leads' == 'We need to throttle leads')	{	 			document.getElementById("ddlLoanType").selectedIndex = 2; 		locHide(); businessCashAdvanceShow();		document.getElementById("ddlLoanType").style.visibility = 'hidden';	}}printForm();