<!--
//* Scott, Remember that apostrophes with break this nav code. To get around this changes, escape out the apostrophe like this -  /'.  
//* Reason is, everything is contained in one of these.
//* document.write(' Right Here!  ');

//* bad example <DIV style='position:absolute'> -  good example <DIV style=\'position:absolute\'> 
//* The apostrophe on  G.C.\'s page is an example.  Take out the backslash, and the Nav stops working.
//* Hope this is helpful,  Tw

document.write(' <DIV style="position:absolute; top:60px; left:2px; width:140px">  ');
document.write(' <table width="100%" border="0" cellspacing="0" cellpadding="1">  ');
document.write(' <tr><td valign="top" id="sidebar"><a href="index.html" >Home</a></td></tr>  ');
document.write(' <tr><td valign="top" id="sidebar"><a href="about.html">About</a></td></tr>  ');
document.write(' <tr><td valign="top" id="sidebar"><a href="contact.html" >Contact</a></td></tr>  ');
document.write(' <tr><td valign="top" id="sidebar"><a href="projects.html">Projects</a></td></tr>  ');
document.write(' <tr><td valign="top" id="sidebar"><a href="links.html">Links</a></td></tr>  ');
document.write(' <tr><td valign="top" id="sidebar"><a href="login.html">G.C.\'s Page</a></td></tr>  ');
document.write(' </table>  ');
document.write(' </DIV>  ');
//-->

