var HTMLpagename = document.pagevars.pagename.value
var HTMLsubpagename = document.pagevars.subpagename.value

if (HTMLpagename == "ShowAll") {writetopnav(); writesubnav();}
else {writetopnav();}

function writetopnav() {
document.write('<TD VALIGN="top" ALIGN="left">');
if (HTMLpagename == "ContactKGW") {document.write('<IMG SRC="images/navselect1.gif" HSPACE="0" VSPACE="0" BORDER="0"><BR>');}
else {document.write('<IMG SRC="images/navselect.gif" HSPACE="0" VSPACE="0" BORDER="0"><BR>');}
document.write('</TD>');

document.write('<TD VALIGN="top" ALIGN="left">');
//document.write(HTMLpagename);
if (HTMLpagename == "ContactKGW") {document.write('&nbsp; <A HREF="contactkgw.html" CLASS="topnavselected">Contact KGW</A><BR>'); writesubnav()}
else {document.write('&nbsp; <A HREF="contactkgw.html" CLASS="topnav">Contact KGW</A><BR>');}
}

function writesubnav() {
document.write('<FONT CLASS="subnav">');
//document.write(HTMLsubpagename);
//if (HTMLsubpagename == "Resume") {document.write('&nbsp; &nbsp;  - <A HREF="resume.tml" CLASS="subnavselected">Resume</A><BR>');}
//else {document.write('&nbsp; &nbsp;  - <A HREF="resume.html" CLASS="subnav">Resume</A><BR>');}
document.write('</FONT>');
}

document.write('<IMG SRC="images/blank.gif" HEIGHT="9" WIDTH="1" VSPACE="0" HSPACE="0"><BR>');
document.write('</TD>');

