Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Load Event

Status
Not open for further replies.

kliz0328

Programmer
Joined
Nov 7, 2005
Messages
138
Location
US
I am working with a site and trying to cycle through each page during the ONLOAD event by filling out the form values and submitting the form. I have run into a problem where it seems not everything is being loaded to the page before I submit it. However, when I just fill out the values in the ONLOAD and submit the form with an ONCLICK within the body the next page loads fine. I was wondering if there was anyway to submit the form with something like ONAFTERLOAD, or some way of making the form submit after the body ONLOAD event?
 
I tried that I put it right before the form was to be submitted and it didn't work out, it is weird it doesn't seem to work until the page is done loading. Any other suggestions? Thanks
 
Putting the submit call at the end of your onlod function should be enough. Maybe you have some other code causing problems?

Can you post your code, or a URL to it?

Dan



[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Assuming there are no other onload events on the same page... then it's a bit of a mystery. If you are able to put the URL up for the page that's troubling you, we could take a look.

Cheers,
Jeff

[tt]Jeff's Page @ Code Couch
[/tt]

What is Javascript? FAQ216-6094
 
It is on my machine locally as of now here is the end of the ONLOAD routine and the form that it is associated with.

Code:
myform.loanamount.value = "$12,000.00";
myform.simpleinterestrate.value = "12%";
myform.loanterm.value = 12;
myform.creditlifeprimarydob.value = "6 6 66";
myform.creditlifecoappdob.value = "7 7 77";
myform.loanamount.focus();
myform.creditlifeprimarydob.focus();
myform.simpleinterestrate.focus();
myform.loanterm.focus();
myform.creditlifecoappdob.focus();
myform.loanamount.focus();
top.C2K_Top.Calculate (myform);
}

     </SCRIPT>
    <LINK REL=STYLESHEET TYPE=TEXT/CSS HREF=C2K_Quoter2.CSS>
  </HEAD>
  <BODY LEFTMARGIN=0 TOPMARGIN=0  ONLOAD='BodyOnLoad ()'>
    <DIV ID=autoboat>
      <FORM NAME=AutoBoatForm METHOD=POST ID=AutoBoatForm>
        <TABLE bgcolor=#FFFFFF border=1>
          <TR>
            <TD>
              <TABLE BGCOLOR=#FFFFFF CELLPADDING=1 CELLSPACING=1>
                <TR>
                  <TD colspan=2 align=center bgcolor=#66CCFF id=boldtext>Auto & Boat Prompts</TD>
                </TR>
<%
  Response.Write sAutoBoatPrompts
%>
                <TR>
                  <TD>
                    <input type=button name=cmdSubmit title=Ok value='Ok' style='width: 30px;' onClick='get_loanamount_from_autoboat();'>
                    <input type=button value='Cancel' style='width: 60px;' onClick='javascript:hideLayer("autoboat")'>
                  </TD>
<%' <!--                  <TD ALIGN=RIGHT>
'                    <input type=button value='Help' style='width: 60px;' onClick='javascript:alert("Help is not yet available')'>
'                  </TD> --> %>
                </TR>
              </TABLE>
            </TD>
          </TR>
        </TABLE>
      </FORM>
    </DIV>
<%
  ' kwc if multi insurance is being used goto multiins.asp if not go directly to quote8_lc.asp
  ' jpd UNLESS it's already been quoted; in that case, we'll have two buttons, one to change ins,
  '      and one to go straight to the disclosure with the current ins.
'  If Session.Contents("LoanType") = "lineofcreditform" Then
  If TransDataDictionary.Item("Multi_Enable_Multi_Ins") = 0 Then
%>
  <FORM NAME='LoanForm' ACTION='nonmultiins.asp' METHOD='POST' ID='LoanForm'>
<%
  ElseIf bRetrieved And Session.Contents("NextStatus") = "DocumentRequested" Then
%>
  <FORM NAME='LoanForm' ACTION='Quote.asp' METHOD='POST' ID='LoanForm'>
<%
  ElseIf TransDataDictionary.Item("Multi_Enable_Multi_Ins") <> 0 Then
%>
  <FORM NAME='LoanForm' ACTION='multiins.asp' METHOD='POST' ID='LoanForm'>
<%
  Else
%>
  <FORM NAME='LoanForm' ACTION='nonmultiins.asp' METHOD='POST' ID='LoanForm'>
<%
  End If
'  For InsuranceTypeIndex = 0 To 5
'    Response.Write ("<!-- " & MustCarry (InsuranceTypeIndex, 0) & " | " & MustCarry (InsuranceTypeIndex, 1) & " | " & MustCarry (InsuranceTypeIndex, 2) & " | " & MustCarry (InsuranceTypeIndex, 3) & " | " & MustCarry (InsuranceTypeIndex, 4) & " | " & MustCarry (InsuranceTypeIndex, 5) & " --> " & vbcrlf)
'  Next
  Response.Write "    <input type='hidden' name='beenherebefore' value='"
  If Not IsEmpty(Request.Form("beenherebefore")) Then
    Response.Write Request.Form("beenherebefore")
  ElseIf TransInputDictionary.Exists("beenherebefore") Then
    Response.Write TransInputDictionary.Item ("beenherebefore")
  End If
  Response.Write "'>" & vbcrlf
'    <INPUT TYPE='hidden' NAME='loanamount_duplicate' VALUE=''>
'    <INPUT TYPE='hidden' NAME='paymentamount' VALUE='0' onBlur='javascript:document.LoanForm.paymentamount_disclosure.value=document.LoanForm.paymentamount.value;'>
'    <INPUT TYPE='hidden' NAME='paymentamount_disclosure' VALUE='0'>
'<!--    <SCRIPT TYPE=TEXT/JAVASCRIPT>
'  if (g_auto_boat) {
'    var abf = document.forms.AutoBoatForm;
'    document.write("<INPUT TYPE='hidden' NAME='ab_autoboatsalesprice' VALUE='" + abf.autoboatsalesprice.value + "'>");
'    document.write("<INPUT TYPE='hidden' NAME='ab_autoboatcashdown' VALUE='" + abf.autoboatcashdown.value + "'>");
'    document.write("<INPUT TYPE='hidden' NAME='ab_autoboattradeinvalue' VALUE='" + abf.autoboattradeinvalue.value + "'>");
'    document.write("<INPUT TYPE='hidden' NAME='ab_autoboatpayoff' VALUE='" + abf.autoboatpayoff.value + "'>");
'    document.write("<INPUT TYPE='hidden' NAME='ab_autoboatwarranty' VALUE='" + abf.autoboatwarranty.value + "'>");
'    document.write("<INPUT TYPE='hidden' NAME='ab_autoboatmvcharges' VALUE='" + abf.autoboatmvcharges.value + "'>");
'    document.write("<INPUT TYPE='hidden' NAME='ab_autoboatdocfees' VALUE='" + abf.autoboatdocumentfees.value + "'>");
'    document.write("<INPUT TYPE='hidden' NAME='ab_autoboatsalestax' VALUE='" + abf.autoboatsalestax.value + "'>");
'  }
'    </SCRIPT> -->
%>
    <INPUT TYPE=HIDDEN NAME=loantype VALUE='<% = Session.Contents ("LoanType") %>'>
    <TABLE CELLSPACING=0 CELLPADDING=0>
      <TR>
        <TD ID=InputLayerCol1 WIDTH=300PX VALIGN=TOP>
         <TABLE>
<%
  ' JPD 3/27/2002 Add loan state & loan type description at the top of the two columns
  Response.Write "<tr><td colspan='2' id='boldtext'>Loan Class:&nbsp;" & Session.Contents("LoanState") & " " & Session.Contents ("ClassData").Item ("Description") & "<hr width='100%' color=black></td></tr>" & VBCrLf
  Response.Write sColumn1Prompts
%>
          </TABLE>
        </TD>
        <TD WIDTH=14PX></TD>
        <TD ID=InputLayerCol2 WIDTH=300PX VALIGN=TOP>
          <TABLE>
<%
  ' JPD 3/27/2002 Add loan state & loan type description at the top of the two columns
  Response.Write "<tr><td colspan='2' id='boldtext'>Loan Type:&nbsp;" & Session.Contents("LoanTypeDescription") & "<hr width='100%' color=black></td></tr>" & VBCrLf
  Response.Write sColumn2Prompts
  Set RecordSet = Nothing
'  Response.Write ("<!-- sInsLife_Header={" & Replace (sInsLife_Header, vbCRLF, "||") & "} -->" & vbCRLF)
'  Response.Write ("<!-- sInsLife_Prompt={" & Replace (sInsLife_Prompt, vbCRLF, "||") & "} -->" & vbCRLF)
'  Response.Write ("<!-- sInsAH_Header={" & Replace (sInsAH_Header, vbCRLF, "||") & "} -->" & vbCRLF)
'  Response.Write ("<!-- sInsAH_Prompt={" & Replace (sInsAH_Prompt, vbCRLF, "||") & "} -->" & vbCRLF)
'  Response.Write ("<!-- sInsIU_Header={" & Replace (sInsIU_Header, vbCRLF, "||") & "} -->" & vbCRLF)
'  Response.Write ("<!-- sInsIU_Prompt={" & Replace (sInsIU_Prompt, vbCRLF, "||") & "} -->" & vbCRLF)
'  Response.Write ("<!-- sInsAD_Header={" & Replace (sInsAD_Header, vbCRLF, "||") & "} -->" & vbCRLF)
'  Response.Write ("<!-- sInsAD_Prompt={" & Replace (sInsAD_Prompt, vbCRLF, "||") & "} -->" & vbCRLF)
'  Response.Write ("<!-- sInsPR_Header={" & Replace (sInsPR_Header, vbCRLF, "||") & "} -->" & vbCRLF)
'  Response.Write ("<!-- sInsPR_Prompt={" & Replace (sInsPR_Prompt, vbCRLF, "||") & "} -->" & vbCRLF)
'  Response.Write ("<!-- sInsHiddenInputs={" & vbCRLF & sInsHiddenInputs & "} -->" & vbCRLF)
  If (sInsLife_Prompt = "") Then
    sInsLife_Header = ""
  End If
  If (sInsAH_Prompt = "") Then
    sInsAH_Header = ""
  End If
  If (sInsIU_Prompt = "") Then
    sInsIU_Header = ""
  End If
  If (sInsAD_Prompt = "") Then
    sInsAD_Header = ""
  End If
  If (sInsPR_Prompt = "") Then
    sInsPR_Header = ""
  End If
  Dim sInsPrompt
  sInsPrompt = sInsLife_Header & _
               sInsLife_Prompt & _
               sInsAH_Header & _
               sInsAH_Prompt & _
               sInsIU_Header & _
               sInsIU_Prompt & _
               sInsAD_Header & _
               sInsAD_Prompt & _
               sInsPR_Header & _
               sInsPR_Prompt
  If (sInsPrompt <> "") Then
    If (bNeedDOB_Prompts) Then
      Response.Write "<tr><td colspan='2'><hr width='100%' color=black></td></tr>" & VBCrLf
    End If
    Response.Write sInsPrompt
  End If
  Response.Write sInsHiddenInputs
' JPD 17 APR 2003 Per DAS, we get the questions even on the first quote.
'If bRetrieved And bNeedHealthQuestions Then
If bNeedHealthQuestions Then
  Response.Write "<tr><td colspan='2'><hr width='100%' color=black></td></tr>" & VBCrLf
  Response.Write FormPromptLine("", "section", "Coverage Health Questions", "", "color:red;")
  cTemp = Session.Contents("ProducerDictionary").Item("Producer_HealthInsuranceText")
  If Len(cTemp) Then Response.Write "<tr><td colspan='2'>" & cTemp & "</td></tr>" & vbcrlf
  '''''Response.Write FormPromptLine("healthquestions", "checkbox", "Completed Health Questions", "healthquestions~", "")
End If
Connection.Close ()
Set Connection = Nothing
Set RetrievedDictionary = Nothing
Set TransDataDictionary = Nothing
Set TransInputDictionary = Nothing
%>
            </TABLE>
          </TD>
        </TR>
      </TABLE>
    </FORM>
  </BODY>
</HTML>
<%
Response.End

Sub SetMustCarry (ThisType)
	Dim aReqTypes, sRT
  If Len(RecordSet.Fields("InsClass_Required_Types")) Then
    aReqTypes = Split(UCase(RecordSet.Fields("InsClass_Required_Types")), ",")
  Else
    aReqTypes = Array()
  End If
'  Response.Write "<!-- SetMustCarry -- ThisType: " & ThisType & " -->" & vbCrLf
'  Response.Write "<!-- InsClass_Required_Types: " & RecordSet.Fields("InsClass_Required_Types") & " -->" & vbCrLf
'  Response.Write "<!-- aReqTypes: ["
'  For i = 0 to UBound(aReqTypes)
'    Response.Write aReqTypes(i) & " "
'  Next
'  Response.Write "] -->" & vbCrLf
  For Each sRT In aReqTypes
    If Right(sRT, 1) = "N" Then
      ' match the number of lives
      InsuranceTypeIndex = CInt(Left(sRT, Len(sRT) - 1))
    Else
      InsuranceTypeIndex = CInt(sRT)
    End If
'    Response.Write ("<!-- BEFORE MustCarry(" & ThisType & ", " & InsuranceTypeIndex & ") = " & MustCarry (ThisType, InsuranceTypeIndex) & " -->" & vbcrlf)
'    Response.Write ("<!-- BEFORE MustCarry(" & InsuranceTypeIndex & ", " & ThisType & ") = " & MustCarry (InsuranceTypeIndex, ThisType) & " -->" & vbcrlf)
    If (InsuranceTypeIndex < ThisType) Then
      MustCarry (ThisType, InsuranceTypeIndex) = MustCarry (ThisType, InsuranceTypeIndex) Or 1
      MustCarry (InsuranceTypeIndex, thisType) = MustCarry (InsuranceTypeIndex, thisType) Or 1
    Else
      MustCarry (ThisType, InsuranceTypeIndex) = MustCarry (ThisType, InsuranceTypeIndex) Or 2
      MustCarry (InsuranceTypeIndex, thisType) = MustCarry (InsuranceTypeIndex, thisType) Or 2
    End If
'    Response.Write ("<!-- AFTER MustCarry(" & ThisType & ", " & InsuranceTypeIndex & ") = " & MustCarry (ThisType, InsuranceTypeIndex) & " -->" & vbcrlf)
'    Response.Write ("<!-- AFTER MustCarry(" & InsuranceTypeIndex & ", " & ThisType & ") = " & MustCarry (InsuranceTypeIndex, ThisType) & " -->" & vbcrlf)
  Next
' Response.Write vbCrLf
End Sub
%>
 
My view source in INternet explorer never works, and our site won't run on anything but IE, I'm not seeing a feasible solution, so I'll quit wasting your guys' time, thanks for your help though I do appreciate it
 
Try clearing your cache then reloading the page before dfoing a view source. Failing that, use Firefox (or other browser) just to get the view-source.

Dan



[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
don't give up so easily!

like Dan said, one thing at a time - clear your cache by selecting Tools > Internet Options from IE. From the "General" tab click "Delete Files", when the popup window appears check the box, then go.

After you do this, you'll be able to do a View > Source.



*cLFlaVA
----------------------------
[tt]( <P> <B>)13 * (<P> <.</B>)[/tt]

[URL unfurl="true"]http://www.coryarthus.com/[/url]
 
Thanks for the help, you guys are great motivators as well as intelects. Here is the page source of the page that is posting.
Code:
<HTML>
  <HEAD>
    <META HTTP-EQUIV=EXPIRES CONTENT='FRI, JUN 12 1981 08:20:00 GMT'>
    <META HTTP-EQUIV=PRAGMA CONTENT=NO-CACHE>
    <META HTTP-EQUIV=CACHE-CONTROL CONTENT=NO-CACHE>
    <TITLE>SmartNet Quoter - Loan Input</TITLE>
    <SCRIPT LANGUAGE='JavaScript' SRC='COOKIE.JS'></SCRIPT>
    <SCRIPT LANGUAGE='JavaScript' SRC='VALIDATE.JS'></SCRIPT>
    <SCRIPT LANGUAGE='JavaScript'>
var myform;

function OnKeyDown ()
{
  if (event.keyCode == 13)
  {
    switch (event.srcElement.id) {
      case 'creditlifeprimarydob':
        creditlifeprimarydob_onchange(myform.creditlifeprimarydob);
        break;
      case 'creditlifecoappdob':
        creditlifecoappdob_onchange(myform.creditlifecoappdob);

        break;
      case 'closingdate':
        closingdate_onchange(myform.closingdate);
        break;
      case 'intereststartdate':
        intereststartdate_onchange(myform.intereststartdate);
        break;
      case 'firstpmtdateordays':
        firstpmtdateordays_onchange(myform.firstpmtdateordays);
        break;
    }
    // SIMULATE A CLICK ON THE CALCULATE BUTTON
    event.returnValue = top.C2K_Top.Calculate(document.LoanForm);
    window.event.cancelBubble = true;
  }
  else
  {
    event.returnValue = true;
  }
  return event.returnValue;
}

document.onkeydown = OnKeyDown;

var g_auto_boat;
var g_loan_type;

function setLoanVal ()
{
  document.forms.LoanForm.loanamount.select ();
  event.returnValue = true;
  return event.returnValue;
}

function showAutoBoat() {
  showNav(autoboat);
  document.AutoBoatForm.autoboatsalesprice.focus();
  return true;
}

function hideAB() {
  if (!(document.forms.LoanForm.paymentsperyear === (void 0))) {
    document.all.paymentsperyear.style.visibility='visible';
  }
  document.all['autoboat'].style.visibility = 'hidden';
}

function balloonfield() {
}

function checkAddOn() {
  var idate_msg;
  var has_balloonpmt = false, has_amortterm = false;

  idate_msg = 'closing date';
  if (!(myform.closingdate === (void 0))) {
    if (myform.closingdate.value == '' || myform.closingdate.value == 'mm/dd/yyyy') {
      alert('You must enter a ' + idate_msg);
      myform.closingdate.focus();
      return(0);
    }
    idate_msg = 'date for interest accrual to begin';
  }
  if (!(myform.intereststartdate === (void 0))) {
    if (myform.intereststartdate.value == '' || myform.intereststartdate.value == 'mm/dd/yyyy') {
      alert('You must enter a ' + idate_msg);
      myform.intereststartdate.focus();
      return(0);
    }
  }
  if (!(myform.firstpmtdateordays === (void 0))) {
    if (myform.firstpmtdateordays.value == '' || myform.firstpmtdateordays.value == 'mm/dd/yyyy') {
      alert('You must enter a payment date, or days to the first payment');
      myform.firstpmtdateordays.focus();
      return(0);
    }
  }
  if (myform.maximumrate !== (void 0) && myform.maximumrate.checked) {
    // no other rates allowed
    if (parseFloat(myform.simpleinterestrate.value) > 0 || (myform.addoninterestrate !== (void 0) && parseFloat(myform.addoninterestrate.value) > 0)) {
      alert('No rates allowed when Maximum Rate is checked');
      if (parseFloat(myform.simpleinterestrate.value) > 0) {
        myform.simpleinterestrate.focus();
      } else {
        myform.addoninterestrate.focus();
      }
      return(0);
    }
  } else if (!(myform.addoninterestrate === (void 0))) {
    if ( (parseFloat(myform.simpleinterestrate.value) > 0) && (parseFloat(myform.addoninterestrate.value) > 0) ) {
      alert('Only one interest rate is allowed; remove either Simple Interest Rate or Add-on Rate');
      myform.simpleinterestrate.focus();

      // THE FOLLOWING LINE IS SUPPOSED TO 'RESET' THE CURSOR, BECAUSE
      // IT IS AN INVALID JAVASCRIPT STATEMENT, HOWEVER IT DOES NOT WORK HERE,
      // IN CARLETON2000.ASP IT CAN BE USED TO RESET THE CURSOR! ALSO THIS
      // IS ONLY VALID FOR JAVASCRIPT VERSIONS DISTRIBUTED WITH VERSION IE 5.5
      // OR ABOVE, EARLIER VERSIONS CAUSE JAVASCRIPT ERRORS.
      // top.document.floater.style.cursor = 'default';
      return(0);
    } else if ((!isFinite(parseFloat(myform.simpleinterestrate.value)) || parseFloat(myform.simpleinterestrate.value) <= 0)
        && (!isFinite(parseFloat(myform.addoninterestrate.value)) || parseFloat(myform.addoninterestrate.value) <= 0)) {
      // both rates are 0; can allow 0 rate later when the dll can handle it
      alert('Must enter a valid interest rate');
      myform.simpleinterestrate.focus();
      return(0);
    }
  } else if (!(myform.simpleinterestrate === (void 0))) { if (myform.simpleinterestrate.type != 'hidden') {
    // can allow 0 rate later when the dll can handle it
    if (!isFinite(parseFloat(myform.simpleinterestrate.value)) || parseFloat(myform.simpleinterestrate.value) <= 0) {
      alert('Must enter a valid interest rate');
      myform.simpleinterestrate.focus();
      return (0);
    }
  }}

// Now we also check some other inputs; we can move these into a separate function if we add the call
// in carleton2000.asp
  has_balloonpmt = (myform.balloonpayment !== (void 0)); // assume reg pmt prompt, too, if this is there
  has_amortterm = (myform.amortterm !== (void 0));
  if (!(myform.loanamount === (void 0))) {
    if (myform.loanamount.value == '' || myform.loanamount.value == '$0.00')
    {

      alert('Must enter a valid loan amount');

      myform.loanamount.focus();
      return (0);
    }
  }
  if (!(myform.loanterm === (void 0))) { if (myform.loanterm.type != 'hidden') {
    if (!isFinite(parseInt(myform.loanterm.value)) || parseInt(myform.loanterm.value) <= 0 ||
        ((has_amortterm || has_balloonpmt) && parseInt(myform.loanterm.value) == 1)) {
      alert('Must enter a valid number of payments');
      myform.loanterm.focus();
      return (0);
    }
    if (has_amortterm && parseInt(myform.amortterm.value) > 0 && parseInt(myform.amortterm.value) < parseInt(myform.loanterm.value)) {
      alert('Amort term may not be less than loan term');
      myform.amortterm.focus();
      return(0);
    }
  } }
  if (has_balloonpmt) {
    var bpmt = myform.balloonpayment.value;
    var lpmt = myform.loanpayment.value;
    bpmt = bpmt.replace(/[^-.0-9]/g, '');
    lpmt = lpmt.replace(/[^-.0-9]/g, '');
    if ((!isFinite(parseFloat(bpmt)) || parseFloat(bpmt) <= 0) &&
        (!isFinite(parseFloat(lpmt)) || parseFloat(lpmt) <= 0)) {
      if (has_amortterm) {
        if (!isFinite(parseInt(myform.amortterm.value)) || parseInt(myform.amortterm.value) <= 0) {
          alert('Must enter a balloon payment, loan payment, or amort term for a balloon loan');
          myform.balloonpayment.focus();
          return(0);
        }
      } else {
        alert('Must enter a balloon payment or loan payment for a balloon loan');
        myform.balloonpayment.focus();
        return(0);
      }
    }
  } else if (has_amortterm) {
    if (!isFinite(parseInt(myform.amortterm.value)) || parseInt(myform.amortterm.value) <= 0) {
      alert('Must enter an amort term (not less than the loan term)');
      myform.amortterm.focus();
      return(0);
    }
  }

  return(1);
}

function get_age(strDate) {
  var dDOB = new Date(strDate);
  var dContract;
  if (!isFinite(dDOB)) { return 0; }
  if (myform.closingdate !== (void 0)) {
    dContract = new Date(myform.closingdate.value);
  } else {
    // must be intereststartdate
    dContract = new Date(myform.intereststartdate.value);
  }
  var iMonths = 12 * (dContract.getFullYear() - dDOB.getFullYear()) + dContract.getMonth() - dDOB.getMonth();
  if (dContract.getDate() < dDOB.getDate()) { iMonths--; }
  return Math.floor(iMonths / 12);
}

function checkDOBs() {
  if (myform.creditlifeprimarydob !== (void 0)) {

    if ((myform.creditlifeprimarydob.value == '') || (myform.creditlifeprimarydob.value == 'mm/dd/yyyy')) {
      alert('The Date of Birth is required for the Primary Applicant');
      myform.creditlifeprimarydob.focus();

      // ANOTHER ATTEMPT TO RESET CURSOR (AWAY FROM SYSTEM WAIT),
      // THIS DOESN'T SEEM TO WORK EITHER! SEE CHECKADDON FUNCTION ABOVE
      // document.all('floater').style.cursor = 'default';
      return(0);
    }
    if (myform.creditlifecoappdob === (void 0) || myform.creditlifecoappdob.value == '' || myform.creditlifecoappdob.value == 'mm/dd/yyyy') {
      // we've got no coapp prompt, or there's no dob in there; can't have joint insurance.
      // we really shouldn't even allow a 'Joint' option if there's no coapp dob prompt, of course.
      var e = (void 0);
      if (myform.creditlifecov !== (void 0) && myform.creditlifecov.type != 'hidden' && myform.creditlifecov.value > 1) {
        e = myform.creditlifecov;
      } else if (myform.ahcov !== (void 0) && myform.ahcov.type != 'hidden' && myform.ahcov.value > 1) {
        e = myform.ahcov;
      } else if (myform.iuicov !== (void 0) && myform.iuicov.type != 'hidden' && myform.iuicov.value > 1) {
        e = myform.iuicov;
      } else if (myform.adcov !== (void 0) && myform.adcov.type != 'hidden' && myform.adcov.value > 1) {
        e = myform.adcov;
      } else if (myform.propertycov !== (void 0) && myform.propertycov.type != 'hidden' && myform.propertycov.value > 1) {
        e = myform.propertycov;
      }
      if (e !== (void 0)) {
        alert('Co-applicant Date of Birth is required for joint coverage.');
        if (myform.creditlifecoappdob !== (void 0)) {
          myform.creditlifecoappdob.focus();
        } else {
          e.focus();
        }
        return(0);
      }
    }
  }
  if (myform.creditlifeprimarysex !== (void 0) && myform.creditlifeprimarysex[0] !== (void 0) && (myform.creditlifeprimarydob === (void 0) || myform.creditlifeprimarydob.value != '')) {
    // there is such a prompt, and either there's no dob prompt or it's filled
    if (!myform.creditlifeprimarysex[0].checked && !myform.creditlifeprimarysex[1].checked) {
      alert('Please select the sex of the Primary Applicant');
      myform.creditlifeprimarysex[0].focus();
      return(0);
    }
  }
  if (myform.creditlifecoappdob !== (void 0) && myform.creditlifecoappdob.value == 'mm/dd/yyyy') {
    myform.creditlifecoappdob.value = '';
  }
  if (myform.creditlifecoappsex !== (void 0) && myform.creditlifecoappsex[0] !== (void 0) && (myform.creditlifecoappdob === (void 0) || myform.creditlifecoappdob.value != '')) {
    // there is such a prompt, and either there's no dob prompt or it's filled
    if (!myform.creditlifecoappsex[0].checked && !myform.creditlifecoappsex[1].checked) {
      alert('Please select the sex of the Co-Applicant');
      myform.creditlifecoappsex[0].focus();
      return(0);
    }
  }

// ATTEMPTS TO RE-SET THE CURSOR BACK TO STANDARD, FROM THE SYSTEM WAIT CURSOR
// DO NOT SEEM TO WORK - WE'RE STUCK WITH THE WAIT CURSOR.
// FOR MORE INFO SEARCH ON 'CURSOR' AT [URL unfurl="true"]HTTP://WWW.IRT.ORG[/URL]
//        for (var i=0;i < document.all.length; i++)
//           document.all(i).style.cursor = 'default';
// THE FOLLOWING CODE SEEMS TO CLEAR THE CURSOR (IT IS CODE THAT IS NOT APPROPRIATE FOR
// SUNTRUST SINCE THERE IS NO THIRD AHTYPE[2] RADIO BUTTON, OR JOINT AH FOR SUNTRUST, SO
// THEREFORE IT IS THROWING AN ERROR, AND CLEARS THE SYSTEM 'WAIT CURSOR', BUT IT DOES NOT
// TRIGGER THE FORM SUBMIT AFTER THIS FUNCTION RETURNS
//   if (document.forms.LoanForm.ahtype[2].checked)
//    var dummy;

  return(1);
}

function showNav(layerName) {
  // alert ('here' & layerName)
  //hide the old layer

  if (!(document.forms.LoanForm.paymentsperyear === (void 0))) {
    document.all.paymentsperyear.style.visibility='hidden';
  }
  document.all['autoboat'].style.visibility = 'visible'
  document.all['autoboat'].style.zindex = 25
}

function hideLayer(layerName)
{
  document.all['autoboat'].style.visibility = 'hidden'
  if (!(document.forms.LoanForm.paymentsperyear === (void 0))) {
    document.all.paymentsperyear.style.visibility='visible';
  }
}

function get_loanamount_from_autoboat()
{
  var tax,taxon, temploanamount;
  var price, downpmt,tradein,payoff,warranty, mvc, docfee, taxrate;
  var abf;

  abf = document.forms('AutoBoatForm');
  var lf = document.forms.LoanForm;

  price = valCurrency(abf.autoboatsalesprice.value);
  downpmt = valCurrency(abf.autoboatcashdown.value);
  tradein = valCurrency(abf.autoboattradeinvalue.value);
  payoff = valCurrency(abf.autoboatpayoff.value);
  warranty = valCurrency(abf.autoboatwarranty.value);
  mvc = valCurrency(abf.autoboatmvcharges.value);
  docfee = valCurrency(abf.autoboatdocumentfees.value);
  taxrate = valCurrency(abf.autoboatsalestax.value);

  //taxon need to changed if it is on salesprice - tradein or warranty
  taxon = price;
  if (g_tax_warranty) {
    taxon = price + warranty;
  }
  if (g_tax_on == 'sale_minus_trade_in') {
    taxon = taxon - tradein;
  }
  if (g_dollar_tax_input) {
    tax = taxrate;
  } else {
    tax = (Math.floor( taxon * taxrate + 0.5)) / 100;
  }
  temploanamount = price - downpmt - tradein + payoff + warranty + mvc + docfee + tax;

  if (taxon<0 || temploanamount<=0){
    alert('Check your inputs');
    return (-1);
  }

  hideLayer('autoboat');

  lf.loanamount.value = formatCurrency(temploanamount, 2);

  // SET THE AUTOBOAT HIDDEN VALUES ON THE LOANFORM FORM SO THAT THEY CAN BE
  // SETUP PROPERLY IF THE USER CLICKS THE CHANGE INPUT BUTTON.
  lf.ab_autoboatsalesprice.value = abf.autoboatsalesprice.value;
  lf.ab_autoboatcashdown.value = abf.autoboatcashdown.value;
  lf.ab_autoboattradeinvalue.value = abf.autoboattradeinvalue.value;
  lf.ab_autoboatpayoff.value = abf.autoboatpayoff.value;
  lf.ab_autoboatwarranty.value = abf.autoboatwarranty.value;
  lf.ab_autoboatmvcharges.value = abf.autoboatmvcharges.value;
  lf.ab_autoboatdocfees.value = abf.autoboatdocumentfees.value;
  lf.ab_autoboatsalestax.value = abf.autoboatsalestax.value;

  // MOVE THE FOCUS TO THE INTEREST RATE
  lf.simpleinterestrate.focus();
}
g_tax_on = '0';
g_auto_boat = false;
g_tax_warranty = false;
g_dollar_tax_input = false;
function insterm_onchange(prompt) {if (myform.loanterm !== (void 0)) {var lt = parseInt(myform.loanterm.value); if (isInteger(prompt, 1, lt)) { return true; } else { if (prompt.value == '1') { prompt.value = ''; prompt.focus(); } if (prompt.value != '') { alert('Coverage term may not exceed loan term; leave blank for full coverage'); prompt.focus(); } return false; } } else {return true;}}
function creditlifeterm_onchange(prompt) { return insterm_onchange(prompt); }
function ahterm_onchange(prompt) { return insterm_onchange(prompt); }
function iuiterm_onchange(prompt) { return insterm_onchange(prompt); }
function addterm_onchange(prompt) { return insterm_onchange(prompt); }
function propertyterm_onchange(prompt) { return insterm_onchange(prompt); }
function loanamount_onchange(prompt) {if (!is_validating) { if (!isCurrency(prompt, 2, 50000000)) { is_validating = true; alert('Loan amount must be no more than 50000000'); prompt.focus(); setTimeout('is_validating = false;', 200); return false; }; }}
function simpleinterestrate_onchange(prompt) {if (!is_validating) { var rmin = 0; var rmax = 36; if (isPercentage(prompt, rmin, rmax)) { return true; } else { is_validating = true; alert('Rate must be between ' + rmin + ' and ' + rmax); prompt.focus(); setTimeout('is_validating = false;', 200); return false; } }}
function loanterm_onchange(prompt) {if (!is_validating) { var pmin = 1; var pmax = 360; if (isInteger(prompt, pmin, pmax)) { return true; } else { is_validating = true; alert('Term must be between ' + pmin + ' and ' + pmax); prompt.focus(); setTimeout('is_validating = false;', 200); return false; } }}
function intereststartdate_onchange(prompt) {if (!is_validating) { is_validating = true; if (!IsContractDate(prompt, 12, prompt.form.firstpmtdateordays, null)) { alert('Not a valid date'); prompt.focus(); setTimeout('is_validating = false;', 200); return false;}  setTimeout('is_validating = false;', 200); } 1;}
function firstpmtdateordays_onchange(prompt) {if (!is_validating) { is_validating = true; if (!IsPaymentDate(prompt, prompt.form.intereststartdate)) { alert('Not a valid date'); prompt.focus(); setTimeout('is_validating = false;', 200); return false;} is_validating = false;} 1;}
function creditlifeprimarydob_onchange(prompt) {if (!is_validating) { mydate = goodDate(prompt.value, 99, 'mmm d y',1,new Date(1900, 0, 1)); if (!(mydate != null)) { is_validating = true; alert('Not a valid date'); prompt.focus(); setTimeout('is_validating = false;', 200); } else { prompt.value = mydate; } } 1;}
function creditlifecoappdob_onchange(prompt) {if (!is_validating) { mydate = goodDate(prompt.value, 99, 'mmm d y',1,new Date(1900, 0, 1)); if (!(mydate != null)) { is_validating = true; alert('Not a valid date'); prompt.focus(); setTimeout('is_validating = false;', 200); } else { prompt.value = mydate; } } 1;}

function BodyOnLoad ()
{
  top.C2K_Top.HideAllButtons ();
  myform = document.forms.LoanForm;
  var firstfield;
  if (myform.beenherebefore.value) {
    if (myform.closingdate !== (void 0)) {
      g_cdate = new Date(myform.closingdate.value);
    } else {
      g_cdate = new Date(myform.intereststartdate.value);
    }
  }

  firstfield = myform.loanamount;
  if (myform.beenherebefore.value == '' && myform.closingdate !== (void 0)) {
    if (myform.closingdate.value != '') {
      is_validating = false;
      closingdate_onchange(myform.closingdate);
    }
  }

  is_validating = false;
  loanamount_onchange(myform.loanamount);
  if (myform.simpleinterestrate !== (void 0))
  {
    if (myform.simpleinterestrate.onblur != null)
    {
      if (parseFloat (myform.simpleinterestrate.value) > 0)
      {
        is_validating = false;
        simpleinterestrate_onchange(myform.simpleinterestrate);
      }
    }
  }
  if (myform.firstpmtdateordays !== (void 0)) {
    if (myform.beenherebefore.value == '' && myform.firstpmtdateordays.value != '') {
      if (myform.intereststartdate !== (void 0) && myform.intereststartdate.value != '') {
        is_validating = false;
        intereststartdate_onchange(myform.intereststartdate);
      }
      is_validating = false;
      firstpmtdateordays_onchange(myform.firstpmtdateordays);
    }
  } else {
    if (myform.beenherebefore.value == '' && myform.intereststartdate !== (void 0) && myform.intereststartdate.value != '') {
      is_validating = false;
      intereststartdate_onchange(myform.intereststartdate);
    }
  }
  if (myform.creditlifeprimarydob !== (void 0)) {

  }
  if (myform.creditlifecoappdob !== (void 0)) {

    if (myform.creditlifecoappsex !== (void 0) && myform.creditlifecoappsex[0] !== (void 0) && (myform.creditlifecoappdob.value == '' || myform.creditlifecoappdob.value == 'mm/dd/yyyy')) {
      myform.creditlifecoappsex[0].checked = false;
      myform.creditlifecoappsex[0].disabled = true;
      myform.creditlifecoappsex[1].checked = false;
      myform.creditlifecoappsex[1].disabled = true;
    }
  }


//-------------------------------

  top.C2K_Top.calculatebutton.style.display = '';
  top.C2K_Top.calculatebutton.className = 'SecondRowButtons';

  for (var index0 = 0; index0 < myform.elements.length; index0++) {
    var myelem = myform.elements[index0];
    if (myelem.type == 'text' && !myelem.isDisabled) {
      var Name = new String(myelem.name);
      if ((Name.indexOf('date') >= 0 || Name.indexOf('dob') >= 0) && (myelem.value === (void 0) || myelem.value == '')) {
        myelem.value = 'mm/dd/yyyy';
      }
    }
  }
  myform.beenherebefore.value = '1';
  firstfield.focus ();
  firstfield.select ();

myform.loanamount.value = "$12,000.00";
myform.simpleinterestrate.value = "12%";
myform.loanterm.value = 12;
myform.creditlifeprimarydob.value = "6 6 66";
myform.creditlifecoappdob.value = "7 7 77";
myform.loanamount.focus();
myform.creditlifeprimarydob.focus();
myform.simpleinterestrate.focus();
myform.loanterm.focus();
myform.creditlifecoappdob.focus();
myform.loanamount.focus();


}

function Try ()
{
  top.C2K_Top.Calculate (myform);
}
      </SCRIPT>
    <LINK REL=STYLESHEET TYPE=TEXT/CSS HREF=C2K_Quoter2.CSS>
  </HEAD>
  <BODY LEFTMARGIN=0 TOPMARGIN=0  ONLOAD='BodyOnLoad ()'>
    <DIV ID=autoboat>
      <FORM NAME=AutoBoatForm METHOD=POST ID=AutoBoatForm>
        <TABLE bgcolor=#FFFFFF border=1>
          <TR>
            <TD>
              <TABLE BGCOLOR=#FFFFFF CELLPADDING=1 CELLSPACING=1>
                <TR>
                  <TD colspan=2 align=center bgcolor=#66CCFF id=boldtext>Auto & Boat Prompts</TD>
                </TR>

                <TR>
                  <TD>
                    <input type=button name=cmdSubmit title=Ok value='Ok' style='width: 30px;' onClick='get_loanamount_from_autoboat();'>
                    <input type=button value='Cancel' style='width: 60px;' onClick='javascript:hideLayer("autoboat")'>
                  </TD>

                </TR>
              </TABLE>
            </TD>
          </TR>
        </TABLE>
      </FORM>
    </DIV>

  <FORM NAME='LoanForm' ACTION='multiins.asp' METHOD='POST' ID='LoanForm'>
    <input type='hidden' name='beenherebefore' value=''>

    <INPUT TYPE=HIDDEN NAME=loantype VALUE='standardform'>
    <TABLE CELLSPACING=0 CELLPADDING=0>
      <TR>
        <TD ID=InputLayerCol1 WIDTH=300PX VALIGN=TOP>
         <TABLE>
<tr><td colspan='2' id='boldtext'>Loan Class:&nbsp;Arkansas Benefit Bank Installment with Level Rates<hr width='100%' color=black></td></tr>
<tr><td colspan='2' id='boldtext'>Loan Information</td></tr>
<tr><td width='67%' align='right' id='inputtext'>Loan Amount</td><td width='33%' id='inputtext'><INPUT TYPE='text' VALUE='0.00' SIZE='15' onFocus='if (g_auto_boat) { showAutoBoat(); } else { setLoanVal(); } 1;' onBlur='loanamount_onchange(this);' STYLE='font-size: xx-small;' ID='loanamount' name='loanamount'></td></tr>
<tr><td width='67%' align='right' id='inputtext'>Simple Interest Rate</td><td width='33%' id='inputtext'><INPUT TYPE='text' VALUE='0.00' SIZE='15' onFocus='hideAB(); this.select();' onBlur='simpleinterestrate_onchange(this);' STYLE='font-size: xx-small;' ID='simpleinterestrate' name='simpleinterestrate'></td></tr>

<SELECT NAME='paymentsperyear' STYLE='display:none'><OPTION VALUE='12 - Monthly' SELECTED></OPTION></SELECT><tr><td width='67%' align='right' id='inputtext'>Loan Term</td><td width='33%' id='inputtext'><INPUT TYPE='text' VALUE='0' SIZE='15' onFocus='hideAB(); this.select();' onBlur='loanterm_onchange(this);' STYLE='font-size: xx-small;' ID='loanterm' name='loanterm'></td></tr>
<tr><td width='67%' align='right' id='inputtext'>Closing Date</td><td width='33%' id='inputtext'><INPUT TYPE='text' VALUE='Mar 7 2006' SIZE='15' onFocus='hideAB(); this.select();' onBlur='intereststartdate_onchange(this);' STYLE='font-size: xx-small;' ID='intereststartdate' name='intereststartdate'></td></tr>
<tr><td width='67%' align='right' id='inputtext'>First Payment Date, or Days</td><td width='33%' id='inputtext'><INPUT TYPE='text' VALUE='Apr 7 2006' SIZE='15' onFocus='hideAB(); this.select();' onBlur='firstpmtdateordays_onchange(this);' STYLE='font-size: xx-small;' ID='firstpmtdateordays' name='firstpmtdateordays'></td></tr>

          </TABLE>
        </TD>
        <TD WIDTH=14PX></TD>
        <TD ID=InputLayerCol2 WIDTH=300PX VALIGN=TOP>
          <TABLE>
<tr><td colspan='2' id='boldtext'>Loan Type:&nbsp;Standard<hr width='100%' color=black></td></tr>
<tr><td colspan='2' id='boldtext'>Customer Information</td></tr>
<tr><td width='67%' align='right' id='inputtext'>Applicant DOB</td><td width='33%' id='inputtext'><INPUT TYPE='text' VALUE='' SIZE='15' onFocus='hideAB(); this.select();' onBlur='creditlifeprimarydob_onchange(this);' STYLE='font-size: xx-small;' ID='creditlifeprimarydob' name='creditlifeprimarydob'></td></tr>
<tr><td width='67%' align='right' id='inputtext'>Co-Applicant DOB</td><td width='33%' id='inputtext'><INPUT TYPE='text' VALUE='' SIZE='15' onFocus='hideAB(); this.select();' onBlur='creditlifecoappdob_onchange(this);' STYLE='font-size: xx-small;' ID='creditlifecoappdob' name='creditlifecoappdob'></td></tr>
<input type='hidden' name='creditlifetype' value='CI821087|FLICAR|195,CI821087|FLICAR|196,CI821087|FLICAR|197,CI821087|FLICAR|198,CI821087|FLICAR|191,CI821087|FLICAR|192,CI821087|FLICAR|193,CI821087|FLICAR|194'>
<input type='hidden' name='levellifetype' value=''>
<input type='hidden' name='ahtype' value=''>
<input type='hidden' name='ahterm' value=''>
<input type='hidden' name='ahcov' value=''>
<input type='hidden' name='iuitype' value=''>
<input type='hidden' name='iuiterm' value=''>
<input type='hidden' name='iuicov' value='0'>
<input type='hidden' name='adtype' value=''>
<input type='hidden' name='addterm' value=''>
<input type='hidden' name='adcov' value='0'>
<input type='hidden' name='propertytype' value=''>
<input type='hidden' name='propertyterm' value=''>
<input type='hidden' name='propertycov' value='0'>

            </TABLE>
          </TD>
        </TR>
      </TABLE>
    </FORM>
  </BODY>
</HTML>

Here is the second page
Code:
<!-- LoanWrap = c2kweb32 -->
<!-- >>>>> Request.Form <<<<< -->
<!-- beenherebefore = {1} -->
<!-- loanamount = {12000.00} -->
<!-- ahcov = {} -->
<!-- iuicov = {0} -->
<!-- propertytype = {} -->
<!-- propertyterm = {} -->
<!-- propertycov = {0} -->
<!-- loantype = {standardform} -->
<!-- levellifetype = {} -->
<!-- simpleinterestrate = {12} -->
<!-- intereststartdate = {Mar 7 2006} -->
<!-- paymentsperyear = {12 - Monthly} -->
<!-- ahterm = {} -->
<!-- addterm = {} -->
<!-- loanterm = {12} -->
<!-- firstpmtdateordays = {Apr 7 2006} -->
<!-- adtype = {} -->
<!-- creditlifeprimarydob = {6 6 66} -->
<!-- creditlifecoappdob = {7 7 77} -->
<!-- creditlifetype = {CI821087|FLICAR|195,CI821087|FLICAR|196,CI821087|FLICAR|197,CI821087|FLICAR|198,CI821087|FLICAR|191,CI821087|FLICAR|192,CI821087|FLICAR|193,CI821087|FLICAR|194} -->
<!-- ahtype = {} -->
<!-- iuiterm = {} -->
<!-- iuitype = {} -->
<!-- adcov = {0} -->
<!-- >>>>> Request.Form <<<<< -->
<!-- iPPY = 12 -->
<!-- iTermInPds = 12 -->
<!-- insStartDate: 3/7/2006 -->
<!-- firstPaymentDate: 4/7/2006 -->
<!-- maturityDate: 3/7/2007 -->
<!-- lastPaymentDate: 2/7/2007 -->
<!-- insTermExtN: 12 -->
<!-- insTermExtNm1: 11 -->
<!-- insStartDate: 3/7/2006 -->
<!-- insTermN: 12 -->
<!-- insTermNm1: 11 -->
<!-- simpleinterestrate therate: 12 -->
<!-- therate: 12 -->
<!-- iTermInMonths = 12 -->
<!-- TransDataDictionary.Item ('npmts') = 12 -->
<!-- levellifetype:  -->
<!-- creditlifetype: CI821087|FLICAR|195,CI821087|FLICAR|196,CI821087|FLICAR|197,CI821087|FLICAR|198,CI821087|FLICAR|191,CI821087|FLICAR|192,CI821087|FLICAR|193,CI821087|FLICAR|194 -->
<!-- ahtype:  -->
<!-- iuitype:  -->
<!-- adtype:  -->
<!-- propertytype:  -->
<!-- *** TOP OF COVERAGE LOOPS *** -->
<!-- iCPR = -1, iCIU = -1, iCAD = -1, iCAH = -1, iCLL = -1, iCDL = 7 -->
<!-- aDL (0) = 'CI821087|FLICAR|195' -->
<!-- AgeBandedLimits = True -->
<!-- OnSeasonal: 0 -->
<!-- iDLCovType: 1 -->
<!-- Life Required_Types:  -->
<!-- iDLTerm = 12, iTermInMonths = 12 -->
<!-- BAD DL (Issue Age): iAgeInYears = 1940, iAgeInYearsCo = 1929, max age = 50, min age = 18 -->
<!-- End DL COV For Loop -->
<!-- aDL (1) = 'CI821087|FLICAR|196' -->
<!-- AgeBandedLimits = True -->
<!-- OnSeasonal: 0 -->
<!-- iDLCovType: 1 -->
<!-- Life Required_Types:  -->
<!-- iDLTerm = 12, iTermInMonths = 12 -->
<!-- BAD DL (Issue Age): iAgeInYears = 1940, iAgeInYearsCo = 1929, max age = 55, min age = 51 -->
<!-- End DL COV For Loop -->
<!-- aDL (2) = 'CI821087|FLICAR|197' -->
<!-- AgeBandedLimits = True -->
<!-- OnSeasonal: 0 -->
<!-- iDLCovType: 1 -->
<!-- Life Required_Types:  -->
<!-- iDLTerm = 12, iTermInMonths = 12 -->
<!-- BAD DL (Issue Age): iAgeInYears = 1940, iAgeInYearsCo = 1929, max age = 67, min age = 56 -->
<!-- End DL COV For Loop -->
<!-- aDL (3) = 'CI821087|FLICAR|198' -->
<!-- AgeBandedLimits = False -->
<!-- OnSeasonal: 0 -->
<!-- iDLCovType: 1 -->
<!-- Life Required_Types:  -->
<!-- iDLTerm = 12, iTermInMonths = 12 -->
<!-- BAD DL (Issue Age): iAgeInYears = 1940, iAgeInYearsCo = 1929, max age = 71, min age = 68 -->
<!-- End DL COV For Loop -->
<!-- aDL (4) = 'CI821087|FLICAR|191' -->
<!-- AgeBandedLimits = True -->
<!-- OnSeasonal: 0 -->
<!-- iDLCovType: 1 -->
<!-- Life Required_Types:  -->
<!-- iDLTerm = 12, iTermInMonths = 12 -->
<!-- BAD DL (Issue Age): iAgeInYears = 1940, iAgeInYearsCo = 1929, max age = 50, min age = 18 -->
<!-- End DL COV For Loop -->
<!-- aDL (5) = 'CI821087|FLICAR|192' -->
<!-- AgeBandedLimits = True -->
<!-- OnSeasonal: 0 -->
<!-- iDLCovType: 1 -->
<!-- Life Required_Types:  -->
<!-- iDLTerm = 12, iTermInMonths = 12 -->
<!-- BAD DL (Issue Age): iAgeInYears = 1940, iAgeInYearsCo = 1929, max age = 55, min age = 51 -->
<!-- End DL COV For Loop -->
<!-- aDL (6) = 'CI821087|FLICAR|193' -->
<!-- AgeBandedLimits = True -->
<!-- OnSeasonal: 0 -->
<!-- iDLCovType: 1 -->
<!-- Life Required_Types:  -->
<!-- iDLTerm = 12, iTermInMonths = 12 -->
<!-- BAD DL (Issue Age): iAgeInYears = 1940, iAgeInYearsCo = 1929, max age = 67, min age = 56 -->
<!-- End DL COV For Loop -->
<!-- aDL (7) = 'CI821087|FLICAR|194' -->
<!-- AgeBandedLimits = False -->
<!-- OnSeasonal: 0 -->
<!-- iDLCovType: 1 -->
<!-- Life Required_Types:  -->
<!-- iDLTerm = 12, iTermInMonths = 12 -->
<!-- BAD DL (Issue Age): iAgeInYears = 1940, iAgeInYearsCo = 1929, max age = 71, min age = 68 -->
<!-- End DL COV For Loop -->
<!-- 'No Life' Iteration -->
<!-- 'No Level' Iteration -->
<!-- 'No A&H' Iteration -->
<!-- 'No IUI' Iteration -->
<!-- 'No AD&D' Iteration -->
<!-- 'No Property' Iteration -->
<!-- *** TOP OF RATE LOOPS *** -->
<!-- iPR = 0, iIU = 0, iAD = 0, iAH = 0, iLL = 0, iDL = 8 -->
<!-- jCPR = 0, jCIU = 0, jCAD = 0, jCAH = 0, jCLL = 0, jCDL = 0 -->
<!-- LL Rate =  -->
<!-- *** RIGHT BEFORE CALC *** -->
<!-- jPR = 0, jIU = 0, jAD = 0, jAH = 0, jLL = 0, jDL = 0 -->
<!-- sDLDesc = , sLLDesc = , sAHDesc = , sADDesc = , sIUDesc = , sPRDesc =  -->
<!-- TransDataDictionary -----------------------------
  nClassID: 226
  ProducerID: 83
  StateID: 4
  Description: Benefit Bank Installment with Level Rates
  Exclude_Int: 1
  Inssetup_Do_Not_Show_Insurance_Per_Payment: 0
  Deduct_Ins: 0
  Insoptions_Extra_Cov_Show_Cov_Options: 0
  Fee_FC_No_Ins: 0
  Loansetup_Auto_Boat_Prompts: 0
  Loansetup_Tax_On: 0
  Loansetup_Tax_Warranty: 0
  Loansetup_Dollar_Tax_Input: 0
  Loansetup_Prompt_Payments_Per_Year: 0
  Loansetup_Prompt_Term_In_Months: 0
  Loansetup_Prompt_Term_In_Payments: 1
  Loansetup_Prompt_For_Add_On_Interest: 0
  Loansetup_Prompt_For_Closing_Date: 0
  Loansetup_Refinance: 0
  Loansetup_Max_Spread: 0
  Loansetup_Dealer_Reserve: 0
  Int_Method: 0
  APR_Method: 2
  Loansetup_APR_Option: 0
  Loansetup_MaxRate: 36
  Loansetup_MinRate: 0
  Loansetup_MaxPayments: 360
  Loansetup_MinPayments: 1
  Loansetup_MaxLoanAmount: 9999999.99
  Loansetup_MinLoanAmount: 0
  Loansetup_MaxPayment: 9999999.99
  Loansetup_MinPayment: 0
  Loansetup_MaxBalloon: 9999999.99
  Loansetup_MinBalloon: 0
  Loansetup_MaxAmountFinanced: 9999999.99
  Loansetup_MinAmountFinanced: 0
  Loansetup_Predate_Contract: 0
  Loansetup_Predate_Contract_Limit: 0
  Loansetup_Form_Copies_Menu: 0
  Loansetup_Approved_Cash_Adjust_Max_Pct: 0
  Loansetup_Approved_Cash_Adjust_Max_Amt: 0
  Loansetup_Postdate_Contract: 0
  Loansetup_Postdate_Contract_Limit: 0
  Rate_1: 0
  Rate_2: 0
  Rate_3: 0
  Rate_4: 0
  Rate_5: 0
  Rate_6: 0
  Limit_1: 0
  Limit_2: 0
  Limit_3: 0
  Limit_4: 0
  Limit_5: 0
  Limit_6: 0
  Alt_Rate: 0
  Max_Rate_Check: 0
  FPAM: 2
  Single_Pay_FPAM: 0
  Weekly_FPAM: 0
  BiWeek_FPAM: 0
  SemiMo_FPAM: 0
  Round_Pmts: 0
  Odd_First_Pmt: 0
  Use_Level_Payments: 1
  Multi_Enable_Multi_Ins: 1
  Ref_DL_R78: 0
  Ref_DL_Prorata: 0
  Ref_DL_Anticipation: 0
  Ref_DL_Meanbetween: 0
  Ref_DL_Actuarial: 0
  Ref_LL_R78: 0
  Ref_LL_Prorata: 0
  Ref_AH_R78: 0
  Ref_AH_Prorata: 0
  Ref_AH_Anticipation: 0
  Ref_AH_Meanbetween: 0
  Ref_Prop_R78: 0
  Ref_Prop_Prorata: 0
  Ref_IUI_R78: 0
  Ref_IUI_Prorata: 0
  Ref_AD_R78: 0
  Ref_AD_Prorata: 0
  Ref_FC_R78: 0
  Ref_FC_ProRata: 0
  Ref_FC_Actuarial: 0
  Ref_Days: 0
  Ref_Use_Loan_Balance: 0
  Ref_Weekly_FPAM: 0
  Ref_BiWeek_FPAM: 0
  Ref_SemiMo_FPAM: 0
  State_Code: 4
  Disabled: 0
  LastModificationDate: 9/26/2005 2:29:55 PM
  LastModificationUserID: 2385
  CreationDate: 6/8/2005 3:40:48 PM
  CreationUserID: 2385
  LoanSetup_Default_Days_To_First: 0
  LoanSetup_Default_Days_Method: 1
  LoanSetup_SubjectToHOEPA: 0
  Code: 
  FormSetName: 
  AmortizationRoundingMethod: 4
  QuickQuote: 0
  PrintButtonText: 
  PrintButtonDocument: 
  NoFullDisclosure: 0
  FormsPrintedFromQuote: 0
  FormsPrintedFromQuoteNotRetrievable: 0
  RequestDocumentsToDocumentRequested: 0
  FormsForNoInsurance: 0
  PrintHealthQuestionsForm: 0
  BorrowerInfoQueryNamesOnly: 0
  BorrowerInfoQuerySSN: 0
  BorrowerInfoQueryLoanNumber: 0
  BorrowerInfoQueryUserCriteria: 0
  ppy: 5
  pmts_per_yr: 12
  int_ppy: 12
  cd_month: 3
  cd_day: 7
  cd_year: 2006
  isd_month: 3
  isd_day: 7
  isd_year: 2006
  fpd_month: 4
  fpd_day: 7
  fpd_year: 2006
  bd_month: 0.666666666666667
  bd_day: 6
  bd_year: 66
  cbd_month: 0.666666666666667
  cbd_day: 7
  cbd_year: 77
  option: 1
  cash: 12000.00
  rate_type: 0
  rate: 12
  npmts: 12
  unknown: 2
  ah_deviation: 1
  fee_af_base: 0
  fee_ppd_base: 0
  fee_fc_base: 0
  fee_sc_base: 0
  fee_do_base: 0
  fees: 0
  prepaid: 0
  base_chg: 0
  service_chg: 0
  fee_do_chg: 0
  fee_af_percent: 0
  fee_ppd_percent: 0
  fee_fc_percent: 0
  fee_sc_percent: 0
  fee_do_percent: 0
  bracketed: 1
  ah_wo_life: 1
  life_code: 0
  level_on_net_ball: 0
  life_mob_type: 0
  life_on_n: 0
  disc_perc: 0
  decr_disc2: 0
  disc_type: 0
  disc_term_sw: 0
  disc2_eq_apr: 0
  lev_on_remaining: 0
  insurance_on_term: 0
  life_type: 2
  npo_type: 2
  whole_mo: 0
  extra_int: 0
  extra_pmts: 0
  dl_flat_oai: 15000
  dl_blank_oai: 0
  dl_max_term: 36
  dl_min_issue_age: 68
  dl_max_issue_age: 71
  dl_max_attained_age: 73
  ah_code: 0
  ah_on_term: 0
  iui_code: 0
  ad_code: 0
  prop_code: 0
  life_rate_type: 0
  single_pay_life_rate_type: 0
  sdl: 0
  jdl: 0
  sgl_mob_rate: 0
  jt_mob_rate: 0
  slmo_a: 0
  jlmo_a: 0
  sll: 0
  jll: 0
  closed_end_mob: 0
  ah_rates_per_1000: 0
  mob_ah_rate: 0
  iui_rate_type: 0
  sgl_iui_rate: 0
  jt_iui_rate: 0
  ad_rate_type: 0
  sgl_ad_rate: 0
  jt_ad_rate: 0
  prop_rate_type: 0
  sgl_prop_rate: 0
  jt_prop_rate: 0
    AH Rate 0: 0
    AH Rate 1: 0
    AH Rate 2: 0
    AH Rate 3: 0
    AH Rate 4: 0
    AH Rate 5: 0
    AH Rate 6: 0
    AH Rate 7: 0
    AH Rate 8: 0
    AH Rate 9: 0
    AH Rate 10: 0
    AH Rate 11: 0
    AH Rate 12: 0
    AH Rate 13: 0
    AH Rate 14: 0
    AH Rate 15: 0
    AH Rate 16: 0
    AH Rate 17: 0
    AH Rate 18: 0
    AH Rate 19: 0
    AH Rate 20: 0
    AH Rate 21: 0
    AH Rate 22: 0
    AH Rate 23: 0
    AH Rate 24: 0
    AH Rate 25: 0
    AH Rate 26: 0
    AH Rate 27: 0
    AH Rate 28: 0
    AH Rate 29: 0
    AH Rate 30: 0
    AH Rate 31: 0
    AH Rate 32: 0
    AH Rate 33: 0
    AH Rate 34: 0
    AH Rate 35: 0
    AH Rate 36: 0
    AH Rate 37: 0
    AH Rate 38: 0
    AH Rate 39: 0
    AH Rate 40: 0
    AH Rate 41: 0
    AH Rate 42: 0
    AH Rate 43: 0
    AH Rate 44: 0
    AH Rate 45: 0
    AH Rate 46: 0
    AH Rate 47: 0
    AH Rate 48: 0
    AH Rate 49: 0
    AH Rate 50: 0
    AH Rate 51: 0
    AH Rate 52: 0
    AH Rate 53: 0
    AH Rate 54: 0
    AH Rate 55: 0
    AH Rate 56: 0
    AH Rate 57: 0
    AH Rate 58: 0
    AH Rate 59: 0
    AH Rate 60: 0
    AH Rate 61: 0
    AH Rate 62: 0
    AH Rate 63: 0
    AH Rate 64: 0
    AH Rate 65: 0
    AH Rate 66: 0
    AH Rate 67: 0
    AH Rate 68: 0
    AH Rate 69: 0
    AH Rate 70: 0
    AH Rate 71: 0
    AH Rate 72: 0
    AH Rate 73: 0
    AH Rate 74: 0
    AH Rate 75: 0
    AH Rate 76: 0
    AH Rate 77: 0
    AH Rate 78: 0
    AH Rate 79: 0
    AH Rate 80: 0
    AH Rate 81: 0
    AH Rate 82: 0
    AH Rate 83: 0
    AH Rate 84: 0
    AH Rate 85: 0
    AH Rate 86: 0
    AH Rate 87: 0
    AH Rate 88: 0
    AH Rate 89: 0
    AH Rate 90: 0
    AH Rate 91: 0
    AH Rate 92: 0
    AH Rate 93: 0
    AH Rate 94: 0
    AH Rate 95: 0
    AH Rate 96: 0
    AH Rate 97: 0
    AH Rate 98: 0
    AH Rate 99: 0
    AH Rate 100: 0
    AH Rate 101: 0
    AH Rate 102: 0
    AH Rate 103: 0
    AH Rate 104: 0
    AH Rate 105: 0
    AH Rate 106: 0
    AH Rate 107: 0
    AH Rate 108: 0
    AH Rate 109: 0
    AH Rate 110: 0
    AH Rate 111: 0
    AH Rate 112: 0
    AH Rate 113: 0
    AH Rate 114: 0
    AH Rate 115: 0
    AH Rate 116: 0
    AH Rate 117: 0
    AH Rate 118: 0
    AH Rate 119: 0
    AH Rate 120: 0
    AH Rate 121: 0
    AH Rate 122: 0
    AH Rate 123: 0
    AH Rate 124: 0
    AH Rate 125: 0
    AH Rate 126: 0
    AH Rate 127: 0
    AH Rate 128: 0
    AH Rate 129: 0
    AH Rate 130: 0
    AH Rate 131: 0
    AH Rate 132: 0
    AH Rate 133: 0
    AH Rate 134: 0
    AH Rate 135: 0
    AH Rate 136: 0
    AH Rate 137: 0
    AH Rate 138: 0
    AH Rate 139: 0
    AH Rate 140: 0
    AH Rate 141: 0
    AH Rate 142: 0
    AH Rate 143: 0
    AH Rate 144: 0
    AH Rate 145: 0
    AH Rate 146: 0
    AH Rate 147: 0
    AH Rate 148: 0
    AH Rate 149: 0
    AH Rate 150: 0
    AH Rate 151: 0
    AH Rate 152: 0
    AH Rate 153: 0
    AH Rate 154: 0
    AH Rate 155: 0
    AH Rate 156: 0
    AH Rate 157: 0
    AH Rate 158: 0
    AH Rate 159: 0
    AH Rate 160: 0
    AH Rate 161: 0
    AH Rate 162: 0
    AH Rate 163: 0
    AH Rate 164: 0
    AH Rate 165: 0
    AH Rate 166: 0
    AH Rate 167: 0
    AH Rate 168: 0
    AH Rate 169: 0
    AH Rate 170: 0
    AH Rate 171: 0
    AH Rate 172: 0
    AH Rate 173: 0
    AH Rate 174: 0
    AH Rate 175: 0
    AH Rate 176: 0
    AH Rate 177: 0
    AH Rate 178: 0
    AH Rate 179: 0
    AH Rate 180: 0
-->
<!-- *** RIGHT AFTER CALC *** -->
<!-- TransOutputDictionary -----------------------------
  amt_fin: 12000
  cash: 12000
  first_pay: 0
  pay: 1066.18
  balloon: 0
  fin_chg: 794.16
  top: 12794.16
  apr: 11.999
  interest: 794.16
  principal: 12000
  dl_prem: 0
  dl_oai: 0
  ll_prem: 0
  ll_oai: 0
  ah_prem: 0
  ah_oai: 0
  iui_prem: 0
  iui_oai: 0
  prop_prem: 0
  prop_oai: 0
  ad_prem: 0
  ad_oai: 0
  total_ins: 0
  cost_day: 0
  cost_period: 0
  min_pay: 0
  max_pay: 0
  per_diem: 3.95
  rate: 12
  fee_amt: 0
  base_chg_amt: 0
  serv_chg_amt: 0
  prepaid_fee_amt: 0
  intang_tax: 0
  doc_stamp: 0
  tot_ah_benefit: 0
  simple_equ_rate: 0
  amort_term: 0
  level_ob_life_premium: 0
  level_ob_ah_premium: 0
  level_ob_ad_premium: 0
  level_ob_iui_premium: 0
  total_level_ob_premiums: 0
  hoepa_percent_exceeded: 0
  hoepa_amount_exceeded: 0
  ret_code: 0
  md_month: 3
  md_day: 7
  md_year: 2007
  months: 1
  days: 0
  actual: 31
  fed_months: 1
  fed_days: 0
  dl_term: 0
  ll_term: 0
  ah_term: 0
  iui_term: 0
  prop_term: 0
  ad_term: 0
  fp_month: 0
  fp_day: 0
  fp_year: 0
  npmts: 12
  error_code: 0
  buyer_age: 1940
  cobuyer_age: 1929
  life_exp_date_month: 0
  life_exp_date_day: 0
  life_exp_date_year: 0
  ah_exp_date_month: 0
  ah_exp_date_day: 0
  ah_exp_date_year: 0
  iui_exp_date_month: 0
  iui_exp_date_day: 0
  iui_exp_date_year: 0
  refund_days: 0
  Version: -->
<!-- *** RIGHT AFTER ERROR CHECK *** -->
<!-- error_code = 0 -->
<!-- bRateCombGood = True -->
<!-- *** Downstream Req Check ***
requiring type = 0  chk = 0
requiring type = 1  chk = 0
requiring type = 2  chk = 0
requiring type = 3  chk = 0
requiring type = 4  chk = 0
-->
<!-- arrMultiDLPrem = 0 arrMultiLLPrem = 0 sDLDesc =  iCDL = 7 iCLL = -1 -->
<!-- *** RIGHT AFTER ERROR CHECK *** -->
<!-- Desc (0) = '<BR>' -->
<!-- Desc (0) = 'No<BR>Insurance' -->
<!-- End PR COV For Loop -->
<!-- End AD COV For Loop -->
<!-- End IU COV For Loop -->
<!-- End AH COV For Loop -->
<!-- End LL COV For Loop -->
<!-- End DL COV For Loop -->
<!-- iNumCoverages = 1 -->
<!-- NoInsurance = True -->
<!-- TransInputDictionary.Item ('MultiInsurancePass') = 0 -->
<!-- TransInputDictionary.Item ('MultiInsurancePass') = 0 -->
<HTML>
  <HEAD>
    <META HTTP-EQUIV=EXPIRES CONTENT='FRI, JUN 12 1981 08:20:00 GMT'>
    <META HTTP-EQUIV=PRAGMA CONTENT=NO-CACHE>
    <META HTTP-EQUIV=CACHE-CONTROL CONTENT=NO-CACHE>
    <TITLE>SmartNet Quoter - Multiple Insurance Quote</TITLE>
    <LINK REL=STYLESHEET TYPE=TEXT/CSS HREF=C2000_OUTPUT.CSS>
    <SCRIPT TYPE=TEXT/JAVASCRIPT>
function BodyOnLoad ()
{
  top.C2K_Top.HideAllButtons ();
  top.C2K_Top.changeinputbutton.style.display = '';
  top.C2K_Top.changeinputbutton.className = 'SecondRowButtons';
  top.C2K_Top.multiprintbutton.style.display = '';
  top.C2K_Top.multiprintbutton.className = 'SecondRowButtons';
  var Inputs = document.getElementsByTagName ('BUTTON');
  var ScrollWidthMax = 0;
  var ScrollHeightMax = 0;
  for (var LoopIndex = 0; LoopIndex < Inputs.length; LoopIndex++)
  {
    if (ScrollWidthMax < Inputs [LoopIndex].scrollWidth)
    {
      ScrollWidthMax = Inputs [LoopIndex].scrollWidth;
    }
    if (ScrollHeightMax < Inputs [LoopIndex].scrollHeight)
    {
      ScrollHeightMax = Inputs [LoopIndex].scrollHeight;
    }
  }
  ScrollWidthMax += 14;
  ScrollHeightMax += 10;
  for (var LoopIndex = 0; LoopIndex < Inputs.length; LoopIndex++)
  {
    Inputs [LoopIndex].style.width = ScrollWidthMax;
    Inputs [LoopIndex].style.height = ScrollHeightMax;
  }
}

function MultiHighLight ()
{
  if (event.toElement.tagName == 'BUTTON')
  {
    event.toElement.style.borderColor = '#F8E000';
    event.toElement.style.backgroundColor = '#FFFF00';
  }
}

function unMultiHighLight ()
{
  if (event.fromElement.tagName == 'BUTTON')
  {
    event.fromElement.style.borderColor = '#77AAFF';
    event.fromElement.style.backgroundColor = '#99CCFF';
  }
}

function unMultiHighLightSel ()
{
  if (event.fromElement.tagName == 'BUTTON')
  {
    event.fromElement.style.borderColor = '#88FF77';
    event.fromElement.style.backgroundColor = '#CCFFCC';
  }
}

function submitit (dlcov, llcov, ahcov, adcov, iucov, prcov)
{
  top.C2K_Top.HideAllButtons ();
  event.returnValue = true;
  document.LoanForm.selcreditlifetype.value = dlcov + '';
  document.LoanForm.sellevellifetype.value  = llcov + '';
  document.LoanForm.selahtype.value         = ahcov + '';
  document.LoanForm.seladtype.value         = adcov + '';
  document.LoanForm.seliuitype.value        = iucov + '';
  document.LoanForm.selpropertytype.value   = prcov + '';
  document.LoanForm.submit ();
  return event.returnValue;
}

function OnBeforePrint ()
{
  return true;
}

function OnAfterPrint ()
{
  return true;
}
    </SCRIPT>
  </HEAD>
  <BODY ONLOAD='BodyOnLoad ()'>
    <CENTER>
      <DIV ID=PRINTHEADER800>Multi-Insurance<BR>Loan Class:&nbsp;Arkansas Benefit Bank Installment with Level Rates<BR>Loan Type:&nbsp;Standard</DIV>
      <TABLE CELLPADDING=2 CELLSPACING=0>
        <TR>
          <TD></TD>
          <TD ALIGN=CENTER>
            <BUTTON CLASS='SHOWN BOLDTEXT800' ONCLICK="javascript:submitit ('', '', '', '', '', '', 'No<BR>Insurance');" onmouseover='MultiHighLight ()' onmouseout='unMultiHighLight ()'>No<BR>Insurance</BUTTON>
          </TD>
        </TR>
        <TR>
          <TD><HR SIZE=1 COLOR=BLACK NOSHADE></TD>
          <TD STYLE='BACKGROUND-COLOR:CCFFFF;BORDER:CCFFFF;'><HR SIZE=1 COLOR=BLACK NOSHADE></TD>
        </TR>
        <TR>
          <TD CLASS=STANDARDTEXT800 NOWRAP>Payment</TD>
          <TD ALIGN=RIGHT STYLE='BACKGROUND-COLOR:CCFFFF;BORDER:CCFFFF;' CLASS=STANDARDTEXT800>$1,066.18</TD>
        </TR>
        <TR>
          <TD><HR SIZE=1 COLOR=BLACK NOSHADE></TD>
          <TD STYLE='BACKGROUND-COLOR:CCFFFF;BORDER:CCFFFF;'><HR SIZE=1 COLOR=BLACK NOSHADE></TD>
        </TR>
      </TABLE>
      <TABLE CELLPADDING=0 CELLSPACING=0 ALIGN=CENTER>
        <TR>
          <TD CLASS=STANDARDTEXT800 ALIGN=RIGHT>Loan Amount</TD>
          <TD WIDTH=14PX></TD>
          <TD ALIGN=RIGHT CLASS=STANDARDTEXT800>$12,000.00</TD>
        </TR>
        <TR>
          <TD CLASS=STANDARDTEXT800 ALIGN=RIGHT>Term</TD>
          <TD></TD>
          <TD ALIGN=RIGHT CLASS=STANDARDTEXT800>12</TD>
        </TR>
        <TR>
          <TD CLASS=STANDARDTEXT800 ALIGN=RIGHT>Rate</TD>
          <TD></TD>
          <TD ALIGN=RIGHT CLASS=STANDARDTEXT800>12.000%</TD>
        </TR>
      </TABLE>
      <BR>
      <TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0 ALIGN=CENTER>
      </TABLE>
    </CENTER>
<!-- 0 | 0 | 0 | 0 | 0 | 0 --> 
<!-- 0 | 0 | 0 | 0 | 0 | 0 --> 
<!-- 0 | 0 | 0 | 0 | 0 | 0 --> 
<!-- 0 | 0 | 0 | 0 | 0 | 0 --> 
<!-- 0 | 0 | 0 | 0 | 0 | 0 --> 
<!-- 0 | 0 | 0 | 0 | 0 | 0 --> 
    <FORM NAME=LoanForm ACTION=Quote.asp METHOD=GET ID=LoanForm>
      <INPUT TYPE=HIDDEN NAME=selcreditlifetype>
      <INPUT TYPE=HIDDEN NAME=sellevellifetype>
      <INPUT TYPE=HIDDEN NAME=selahtype>
      <INPUT TYPE=HIDDEN NAME=seladtype>
      <INPUT TYPE=HIDDEN NAME=seliuitype>
      <INPUT TYPE=HIDDEN NAME=selpropertytype>
    </FORM>
  </BODY>
</HTML>
<!-- DL_Available      = -1 -->
<!-- LL_Available      = 0 -->
<!-- AH_Available      = 0 -->
<!-- IU_Available      = 0 -->
<!-- AD_Available      = 0 -->
<!-- PR_Available      = 0 -->
<!-- DL_Offered        = 0 -->
<!-- LL_Offered        = 0 -->
<!-- AH_Offered        = 0 -->
<!-- IU_Offered        = 0 -->
<!-- AD_Offered        = 0 -->
<!-- PR_Offered        = 0 -->
<!-- CoverageDeclineDL = False -->
<!-- CoverageDeclineLL = False -->
<!-- CoverageDeclineAH = False -->
<!-- CoverageDeclineIU = False -->
<!-- CoverageDeclineAD = False -->
<!-- CoverageDeclinePR = False -->
<!-- TermDeclineDL     = False -->
<!-- TermDeclineLL     = False -->
<!-- TermDeclineAH     = False -->
<!-- TermDeclineIU     = False -->
<!-- TermDeclineAD     = False -->
<!-- TermDeclinePR     = False -->
<!-- AgeDeclineDL      = False -->
<!-- AgeDeclineLL      = False -->
<!-- AgeDeclineAH      = False -->
<!-- AgeDeclineIU      = False -->
<!-- AgeDeclineAD      = False -->
<!-- AgeDeclinePR      = False -->
<!-- DeclineCoverage   = False -->
<!-- DeclineTerm       = False -->
<!-- DeclineAge        = False -->
<!-- DeclineHOEPA      = False -->
<!-- AlertHOEPA        = False -->
 
These lines are missing from the second page of code they should be right above the No Insurance button.

Code:
         <TD ALIGN=CENTER>
            <BUTTON CLASS='SHOWN BOLDTEXT800' ONCLICK="javascript:submitit ('CI821087|FLICAR|195|62712', '', '', '', '', '', 'Joint Life<BR><BR>');" onmouseover='MultiHighLight ()' onmouseout='unMultiHighLight ()'>Joint Life<BR><BR></BUTTON>
          </TD>
          <TD ALIGN=CENTER>
            <BUTTON CLASS='SHOWN BOLDTEXT800' ONCLICK="javascript:submitit ('CI821087|FLICAR|191|62708', '', '', '', '', '', 'Single Life<BR><BR>');" onmouseover='MultiHighLight ()' onmouseout='unMultiHighLight ()'>Single Life<BR><BR></BUTTON>
          </TD>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top