function writeHeader(srcPrefix)
{  
  if (typeof(srcPrefix) == "undefined")
  {
    srcPrefix = '..';
  }

  document.write('<div align="center" style="background-color:#9ba88e;">');
  //document.write('<center>');

  //document.write('<table border="0" width="100%" cellpadding="20" cellspacing="0" style="border-top: medium outset black; border-bottom: medium outset black">');

  document.write('<table border="0" width="100%" cellpadding="15" cellspacing="0" style="border-top: solid 6px black; border-bottom: solid 6px black">');
  document.write('<tr>');

  //class="textLinkDefault"

  document.write('<td width="25%" align="center"><img border="0" src="' + srcPrefix + '/other/hp.jpg" width="122" height="52" alt="hand plane"></td>');
  document.write('<td width="50%" align="center"><a href="' + srcPrefix + '/index.htm"><img border="0" src="' + srcPrefix + '/other/name.jpg" width="471" height="45" alt="home"></a></td>');
  document.write('<td width="25%" align="center"><img border="0" src="' + srcPrefix + '/other/est.jpg" width="112" height="22" alt="Est. 1972"></td>');

  document.write('</tr>');
  document.write('</table>');
  //document.write('</center>');
  document.write('</div>');
}

function writeFooter(linkText, link)
{  
  if (typeof(linkText) == "undefined")
  {
    linkText = 'HOME';
  }

  if (typeof(link) == "undefined")
  {
    link = '../index.htm';
  }

  document.write('<div align="center">');

  document.write('<a class="textLinkDefault" href="' + link + '">');
  document.write('<img border="0" src="../other/homeDesign.jpg" width="110" height="49" alt="' + linkText.toLowerCase() + '">');
  document.write('<br>' + linkText + '</a>');

  document.write('</div>');
}
