/**
 * Description:  This is a file that holds JavaScript
 *   for Paper Wise.  It's purpose is to hold 
 *   general JavaScript functions in a central library.
 **/

/**
 * displayHeader()
 * Displays graphics that appear on the 
 * top of each page.
 **/
function displayHeader()
{
  var msg = '<td width="275px" valign="center" style="text-align:right; position:static;">';
  msg += '<p class="top">(970)945-2885</p>';
  msg += '</td>';
  msg += '<td width="200px" style="text-align:left; position:static;">';
  msg += '<img src="../images/CurrentLogo.gif"></img>';
  msg += '</td>';
  msg += '<td width="200px"  style="text-align:left; position:static;">';
  msg += '<p class="top">Glenwood Springs, CO</p>';
  msg += '</td>';
  document.write(msg);
}

/**
 * displayFooter()
 * Displays the footer that appears at the bottom of the
 * middle cell on each page.
 **/
function displayFooter()
{
  var msg = '<p class="footer">';
  msg += 'Leave the paper work to Paper Wise';
  msg += '</p>';
  document.write(msg);
}