// form_page.js

var frm = new Object();

frm.page_customer = '' +
  '<form>' + 
  '<table border="1" bordercolor="#000066" cellpadding="0" cellspacing="0" width="500">' +  
    '<caption>Please give us your name and a way to contact you</caption>' + 
    '<tr bgcolor="#000066">' + 
    '  <td><img src="_images/spacer.gif" width="200" height="1" border="0"></td>' + 
     ' <td><img src="_images/spacer.gif" width="300" height="1" border="0"></td>' +       
    '</tr>' + 
    '<tr>' + 
     ' <td class="label">Name:</td>' + 
      '<td class="input"><input type="text" name="name" id="name"></td>' + 
    '</tr>' + 
    '<tr>' + 
     ' <td class="label">Title:</td>' + 
      '<td class="input"><input type="text" name="title" id="title"></td>' + 
    '</tr>    ' + 
    '<tr>' + 
     ' <td class="label">Company:</td>' + 
      '<td class="input"><input type="text" name="company" id="company"></td>' + 
    '</tr>    ' + 
    '<tr>' + 
     ' <td class="label">Address 1:</td>' + 
      '<td class="input"><input type="text" name="address_1" id="address_1"></td>' + 
    '</tr>' + 
    '<tr>' + 
     ' <td class="label">Address 2:</td>' + 
      '<td class="input"><input type="text" name="address_2" id="address_2"></td>' + 
    '</tr>' + 
    '<tr>' + 
     ' <td class="label">City:</td>' + 
      '<td class="input"><input type="text" name="city" id="city"></td>' + 
    '</tr>' + 
    '<tr>' + 
     ' <td class="label">State:</td>' + 
      '<td class="input" id="state_list"></td>' + 
    '</tr>' + 
    '<tr>' + 
     ' <td class="label">Zip Code:</td>' + 
      '<td class="input"><input type="text" name="zip" id="zip"></td>' + 
    '</tr>' + 
    '<tr>' + 
     ' <td class="label">Email Address:</td>' + 
      '<td class="input"><input type="text" name="email_address" id="email_address"></td>' + 
    '</tr>' + 
    '<tr>' + 
     ' <td class="label">Phone:</td>' + 
      '<td class="input"><input type="text" name="phone" id="phone"></td>' + 
    '</tr>' + 
    '<tr>' + 
     ' <td class="label">Fax:</td>' + 
      '<td class="input"><input type="text" name="fax" id="fax"></td>' + 
    '</tr>' +
    '<tr>' + 
     ' <td class="label">How may we contact you?</td>' + 
      '<td class="input" id="pref_list"></td>' + 
    '</tr>' +      
  '</table>' + 
  '</form>';
  
frm.page_companies = '' +
  '<form>' + 
  '<table id="companies" cellpadding="0" cellspacing="0" width="500">' +  
    '<caption>Choose any of these companies featured <br />in the Jan/Feb issue of DramaBiz Magazine</caption>' +     
    '<tr bgcolor="#000066">' + 
    '  <td><img src="_images/spacer.gif" width="150" height="1" border="0"></td>' + 
     ' <td><img src="_images/spacer.gif" width="350" height="1" border="0"></td>' +       
    '</tr>' + 
    '<tr>' +
      '<td class="instruction" colspan="2">(Hold the CTL Key Down for multiple selections)</td>' +
    '</tr>' +
    '<tr>' + 
      '<td id="vendors" colspan="2">&nbsp</td>' + 
    '</tr>' +
    '</table>' + 
  '</form>';
  
frm.page_products = '' +
  '<form>' + 
  '<table id="products_table" cellpadding="0" cellspacing="0" width="500">' +  
    '<caption>Please check any other product categories <br />that you would like to receive information on</caption>' + 
    '<tr bgcolor="#000066">' + 
    '  <td><img src="_images/spacer.gif" width="150" height="1" border="0"></td>' + 
     ' <td><img src="_images/spacer.gif" width="350" height="1" border="0"></td>' +       
    '</tr>' +     
    '<tr>' +
      '<td class="instruction" colspan="2">(Hold the CTL Key Down for multiple selections)</td>' +
    '</tr>' + 
    '<tr>' + 
      '<td id="products" colspan="2">&nbsp</td>' + 
    '</tr>' +
    '</table>' + 
  '</form>';

frm.page_timeframes = '' + 
  '<form>' + 
  '<table id="timeframes_table" cellpadding="0" cellspacing="0" width="500">' +  
    '<caption>How soon do you think will you be making a purchase?</caption>' + 
    '<tr bgcolor="#000066">' + 
    '  <td><img src="_images/spacer.gif" width="150" height="1" border="0"></td>' + 
     ' <td><img src="_images/spacer.gif" width="350" height="1" border="0"></td>' +       
    '</tr>' +
    '<tr>' + 
      '<td class="spacer" colspan="2">&nbsp</td>' + 
    '</tr>' + 
    '<tr>' + 
      '<td id="time_frames" colspan="2">&nbsp</td>' + 
    '</tr>' +
    '</table>' + 
  '</form>';


frm.page_finish = '' + 
  '<form>' + 
  '<table id="review_table" cellpadding="0" cellspacing="0" width="500">' +  
    '<caption>Save this information?</caption>' + 
    '<tr bgcolor="#000066" height="1">' + 
    '  <td><img src="_images/spacer.gif" width="150" height="1" border="0"></td>' + 
     ' <td><img src="_images/spacer.gif" width="350" height="1" border="0"></td>' +       
    '</tr>' + 
    '<tr>' + 
      '<td id="form_values" colspan="2">&nbsp</td>' + 
    '</tr>' +
  '</table>' + 
  '</form>';

frm.page_send_data = '' + 
  '<form>' +  
  '</form>';

