form -- explain


  <!-- 
    This is an HTML form that allows the user to enter data and allows
    JavaScript to display the results it computes back to the user. The
    form elements are embedded in a table to improve their appearance.
    The form itself is given the name "loandata", and the fields within
    the form are given names such as "interest" and "years". These
    field names are used in the JavaScript code that follows the form.
    Note that some of the form elements define "onchange" or "onclick"
    event handlers. These specify strings of JavaScript code to be
    executed when the user enters data or clicks on a button.
  -->