function pageheader( path2root ) 
{
document.write('      <table width="780" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" bordercolor="#000000">');
document.write('        <tr>');
document.write('         <td width="780">');
document.write('             <div align="center">');
document.write('               <center>');
document.write('               <table border="0" cellpadding="0" cellspacing="0" width="100%" background="'+path2root+'menu/webbannermiddlefiller.jpg">');
document.write('                 <tr>');
document.write('                   <td width="33%"><img border="0" src="'+path2root+'menu/webbannerlogo.gif"></td>');
document.write('                   <td width="33%">&nbsp;</td>');
document.write('                   <td width="34%" align="right"><img border="0" src="'+path2root+'menu/webbannerwolfhead.gif" width="177" height="109"></td>');
document.write('                 </tr>');
document.write('               </table>');
document.write('               </center>');
document.write('             </div>');
document.write('           </td>');
document.write('         </tr>');
document.write('       </table>');

}

function pagemenu( path2root )
{
document.write('      <table width="780" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#000000" bordercolor="#000000">');
document.write('        <tr>');
document.write('          <td>');
document.write('            <table width="780" border="0" cellpadding="0" cellspacing="0" height="36" background="'+path2root+'menu/webbannermiddlefiller.jpg">');
document.write('              <tr>');
document.write('                <td width="20%" align="center" height="36"><a href="'+path2root+'default.htm" onMouseover="lightup(\'home\',\''+path2root+'\')" onMouseout="turnoff(\'home\',\''+path2root+'\')"><img border="0" name="home" src="'+path2root+'menu/home1.jpg" width="110" height="30"></a></td>');
document.write('                <td width="20%" height="36" align="center"><a href="'+path2root+'company.htm" onMouseover="lightup(\'company\',\''+path2root+'\')" onMouseout="turnoff(\'company\',\''+path2root+'\')"><img border="0" name="company" src="'+path2root+'menu/company1.jpg" width="110" height="30"></a></td>');
document.write('                <td width="20%" height="36" align="center"><a href="'+path2root+'services.htm" onMouseover="lightup(\'services\',\''+path2root+'\')" onMouseout="turnoff(\'services\',\''+path2root+'\')"><img border="0" name="services" src="'+path2root+'menu/services1.jpg" width="110" height="30"></a></td>');
document.write('                <td width="20%" height="36" align="center"><a href="'+path2root+'support.htm" onMouseover="lightup(\'support\',\''+path2root+'\')" onMouseout="turnoff(\'support\',\''+path2root+'\')"><img border="0" name="support" src="'+path2root+'menu/support1.jpg" width="110" height="30"></a></td>');
document.write('                <td width="20%" height="36" align="center"><a href="'+path2root+'contact.htm" onMouseover="lightup(\'contactus\',\''+path2root+'\')" onMouseout="turnoff(\'contactus\',\''+path2root+'\')"><img border="0" name="contactus" src="'+path2root+'menu/contactus1.jpg" width="110" height="30"></a></td>');
document.write('              </tr>');
document.write('            </table>');
document.write('        </tr>');
document.write('      </table>');
}

function pagefooter( path2root )
{
document.write('         <table width="780" border="0" cellpadding="0" cellspacing="0" background="'+path2root+'menu/webbannermiddlefiller.jpg">');
document.write('           <tr>');
document.write('             <td align="center"><span class="style1"><a href="'+path2root+'default.htm"><font face="Microsoft Sans Serif" size="1">HOME</font></a>');
document.write('               <font face="Microsoft Sans Serif" size="1">&nbsp;&nbsp;|');
document.write('               &nbsp;&nbsp;<a href="'+path2root+'company.htm">COMPANY</a> &nbsp;&nbsp;|');
document.write('               &nbsp;&nbsp;<a href="'+path2root+'services.htm">SERVICES</a> &nbsp;&nbsp;|');
document.write('               &nbsp;&nbsp;&nbsp;<a href="'+path2root+'support.htm">SUPPORT</a>&nbsp;');
document.write('               &nbsp;&nbsp;| &nbsp;&nbsp;<a href="'+path2root+'contact.htm">CONTACT US</a></font></span></td>');
document.write('           </tr>');
document.write('         </table>');
}

function lightup( imgName, path2root )
{
imgOn=path2root+"menu\/" + imgName + "2.jpg";
document[imgName].src= imgOn;
}

function turnoff( imgName, path2root)
{
imgOff=path2root+"menu\/" + imgName + "1.jpg";
document[imgName].src= imgOff;
}
 


