//writeTop.js
function writeTop()  
{      //write top logo, gutter, and banner
document.writeln('  <tr>');
document.writeln('    <td width="128" bgcolor="'+colLeftNavBgColor+'" valign="top" align="center" height="5">&nbsp; </td>');
document.writeln('    <td width="4"  background="'+gutterImg+'"  height="5" >&nbsp; </td> ');
document.writeln('    <td width="448" height="5">&nbsp; </td> ');
document.writeln('  </tr> ');
document.writeln('  <tr> ');
document.writeln('    <td width="128" bgcolor="'+colLeftNavBgColor+'" valign="top" align="center"> ');
document.writeln('      <A href="index.htm" ><img src="images/TCSCLogo.gif" border="0" width="124" height="124" alt="TCSC Home" align="top"> </a>');
document.writeln('      &nbsp; ');
document.writeln('    </td> ');
document.writeln('    <td width="4" background="'+gutterImg+'"  >&nbsp; </td> ');
document.writeln('    <td width="448" height="100" valign="top" align="center"> ');
document.writeln("        <big><big><big><I><b>Thurmont Conservation <br> and Sportsman's Club, Inc. </b></I>");

document.writeln("        <br> <i> TCSC </I></big></big></big>");
//document.writeln('  </td>   ');
document.writeln('  </tr> ');
}


function writeTopSub(pageTitle)  
{      //write top logo, gutter, and banner
document.writeln('  <tr>');
document.writeln('    <td width="128" bgcolor="'+colLeftNavBgColor+'" valign="top" align="center" height="5">&nbsp; </td>');
document.writeln('    <td width="4"  background="'+gutterImg+'"  height="5" >&nbsp; </td> ');
document.writeln('    <td width="448" height="5">&nbsp; </td> ');
document.writeln('  </tr> ');
document.writeln('  <tr> ');
document.writeln('    <td width="128" bgcolor="'+colLeftNavBgColor+'" valign="top" align="center"> ');
document.writeln('     <A href="index.htm"> <img src="images/TCSCLogo.gif" border="0" width="124" height="124" alt="TCSC Home" align="top"> </A>');
document.writeln('      &nbsp; ');
document.writeln('    </td> ');
document.writeln('    <td width="4" background="'+gutterImg+'"  >&nbsp; </td> ');
document.writeln('    <td width="448" height="100" valign="top" align="center"');
document.writeln("        <big><big><b><I>Thurmont Conservation and Sportsman's Club </i>");
document.writeln("        <br> <I> TCSC</I> </b></big>");
if(pageTitle != "")
{
  document.writeln("    <br> <br> <big><big>"+pageTitle+"<big></big></br></br> ");
}
document.writeln('  </td>   ');
document.writeln('  </tr> ');
}