 function showHeader(label)
 {
    var image = { 'Home':		'main',
                  'ECF':		'ECF',
                  'Court Info':		'courtInfo',
                  'Calendars':		'calendar',
                  'Chambers':		'chambers',
                  'Information':	'information',
                  'News':		'news',
                  'Forms':		'forms' };

    document.write(" <TR>"+
                   "  <TD bgcolor='#013366'>"+
                   "   <IMG src='/img/header_main.jpg' border=0");
//                   "   <IMG src='/img/header_"+ image[label] +".jpg' border=0");
//    if (label == 'Home')
//    {
       document.write(" usemap='#DistMap'");
//    }
    document.write(">");
//    if (label == 'Home')
//    {
       document.write("   <MAP name='DistMap'>"+
                      "    <AREA shape='rect' coords='273,79,660,98' "+
                      "          href='/distrmap.html'"+
                      "          target='_self' alt='District Map' />"+
                      "   </MAP>");
//    }
    document.write("   <DIV style='position: absolute; top: 5px; left: 700px;'>"+
//                   "    <A href='/comments.html' class='Comments' "+
//                   "       target='_self'>Comments</A>"+
                   "   </DIV>"+
                   "  </TD>"+
                   " </TR>");
 }

 function showFooter()
 {
    var links = [ [ 'index',		'Home' ],
      //            [ 'comments',		'Comments' ],
                  [ 'links',		'Links' ],
                  [ 'sitehelp',		'Site Help' ] ];

    document.write(" <TR><TD><HR width='100%'></TD></TR>");
    document.write(" <TR><TD height=5></TD></TR>"+
                   " <TR>"+
                   "  <TD style='height: 15px'>"+
                   "   <TABLE border=0 cellpadding=0 cellspacing=0 width='100%'>"+
                   "    <TR>"+
                   "     <TD>"+
                   "      &nbsp;&nbsp");
    for (var i=0; i < links.length; i++)
    {
       document.write("      <A href='/"+ links[i][0] +".html'"+
                      " class='FooterText' target='_self'>"+
                      links[i][1] +"</A>");
       if (i != (links.length - 1))
       {
          document.write("      &nbsp;|&nbsp");
       }
    }
    document.write("     </TD>"+
                   "     <TD align='right' style='font-size: 11px'>"+
                   "      United States Bankruptcy Court - Western District "+
                   "of North Carolina."+
                   "     </TD>"+
                   "    </TR>"+
                   "   </TABLE>"+
                   "  </TD>"+
                   " </TR>"+
                   " <TR><TD height=15></TD></TR>");
 }
