// mouseover borders on image map of bills
function show(object,x,y,a,b) 
 {
   if (document.layers && document.layers[object] != null) 
    {
     document.layers[object].left = x;
     document.layers[object].top = y;
     document.layers[object].width = a;
     document.layers[object].height = b;
    }
   if (document.all) 
    {
     document.all[object].style.posLeft = x;
     document.all[object].style.posTop = y;
     document.all[object].style.width = a;
     document.all[object].style.height = b;
    }
   if (document.layers && document.layers[object] != null)
    document.layers[object].visibility = 'visible';
   else if (document.all)
    document.all[object].style.visibility = 'visible';
 } 
function hide(object) 
 {
  if (document.layers && document.layers[object] != null)
   document.layers[object].visibility = 'hidden';
  else if (document.all)
   document.all[object].style.visibility = 'hidden';
 }

// --- Description files - opens new window and writes to it depending on selection.
descriptionOpen="<html><head><title>Understanding Your Bill</title><link rel='STYLESHEET' type='text/css' href='../include/template.css'></head><body marginwidth=2 marginheight=2 topmargin=2 leftmargin=2><table cellspacing=2 cellpadding=2 border=0 class=contenttext2>";
descriptionClose="<tr><td align=center valign=bottom><br /><a href='javascript:window.close();' class='descriptionlink'>close window</a></td></tr></table></body></html>";

description=new Array()
 description[0]="<tr><td><b>Title</b></td></tr><tr><td>Content.</td></tr>"
 description[1]="<tr><td><b>Identification</b></td></tr><tr><td>This information appears on every page of your bill. It includes your bill date, account number and phone number.</td></tr>"
 description[2]="<tr><td><b>Last Month</b></td></tr><tr><td>This section contains charges from your previous bill and any adjustments and payments received against those charges since the last billing date.</td></tr>"
 description[3]="<tr><td><b>This Month</b></td></tr><tr><td>This section lists your current charges by service type and the total amount due.<p><i>Charges for each subscribed service:</i>the total of monthly charges and other charges and credits for all subscribed services.<p><i>Taxes:</i> a listing of all taxes and surcharges (state, local, etc.).</td></tr>"
 description[4]="<tr><td><b>Watch this area</b></td></tr><tr><td>for community and/or regulatory announcements and information about new products and services.</td></tr>"
 description[5]="<tr><td><b>Remit Coupon</b></td></tr><tr><td>Detach this section at the perforation and return it to the address listed in the \"remit to\" area, along with your payment. This coupon displays information we need to post the payment to your account properly. This includes your name and billing address, account number and the amount you owe. There is also space for you to write in the actual amount of your payment.</td></tr>"
 description[6]="<tr><td><b>Check this box</b></td></tr><tr><td>and fill in the requested information on the back if you wish to change your address or charge your payments to your Visa or MasterCard on a regular basis.</td></tr>"
 description[7]="<tr><td><b>Additional community and regulatory announcements</b></td></tr><tr><td>or product and service information.</td></tr>"
 description[8]="<tr><td><b>Current Service Charges</b></td></tr><tr><td>This area lists each recurring monthly charge posted to your account for a subscribed service such as telephone. It identifies each charge and shows the billing dates, number of units charged for, the cost per unit and the total cost. This area may be followed by a section for Other Charges and Credits, which displays any non-recurring charges and credits posted to your account during this billing cycle. It includes a description of each charge or credit and the amount. Any associated taxes, surcharges and fees will also be displayed.<p>For each service subscribed to, a billing summary is presented subtotaling charges for that service. This sample features two, telephone and cable.</td></tr>"
 description[9]="<tr><td><b>Carrier Selection</b></td></tr><tr><td>This area is reserved for display of information on your chosen interstate (interLATA) long distance carrier and local (intraLATA) long distance carrier.</td></tr>"
 description[10]="<tr><td><b>Current Long Distance Charges</b></td></tr><tr><td>This section shows all the long distance calls placed during the current billing cycle. In addition to details for each long distance call, it identifies calls that qualified for discount plans by placing them under the selected calling/discount plan header. Subtotals are provided for each category of long distance call.</td></tr>"
 description[11]="<tr><td><b>Current TV Charges</b></td></tr><tr><td>This section shows the regular monthly charge for service, premium movie channels, additional equipment rental such as a second converter box and inside wire maintenance, with a subtotal for these charges. Below this information you will find surcharges and taxes for cable service itemized and totaled.</td></tr>"
 description[12]="<tr><td><b>Title</b></td></tr><tr><td>Content.</td></tr>"
 description[13]="<tr><td><b>Title</b></td></tr><tr><td>Content.</td></tr>"
 description[14]="<tr><td><b>Title</b></td></tr><tr><td>Content.</td></tr>"
 description[15]="<tr><td><b>Title</b></td></tr><tr><td>Content.</td></tr>"
 description[16]="<tr><td><b>Title</b></td></tr><tr><td>Content.</td></tr>"
 description[17]="<tr><td><b>Title</b></td></tr><tr><td>Content.</td></tr>"
 description[18]="<tr><td><b>Title</b></td></tr><tr><td>Content.</td></tr>"
 description[19]="<tr><td><b>Title</b></td></tr><tr><td>Content.</td></tr>"
 description[20]="<tr><td><b>Title</b></td></tr><tr><td>Content.</td></tr>"
 
function newDescriptionWindow(num) 
 {
  OpenWin = this.open("", "HelpWindow", "toolbar=no,menubar=no,location=no,scrollbars=auto,resizable=no,width=350,height=250");
  newdocument=OpenWin.document;
  newdocument.write(descriptionOpen + description[num] + descriptionClose);
  newdocument.close();
  window['OpenWin'].focus();
 }
// --- End help files
