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 == "QualificationsSignificantProjects") 
	{
		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">');
	if (HTMLpagename == "QualificationsSignificantProjects") 
	{
		document.write('&nbsp; <A HREF="qualificationssignificantprojects.html" CLASS="topnavselected">Who Is Ken Wiens</A><BR>');
		writesubnav();
	}
	else
	{
		document.write('&nbsp; <A HREF="qualificationssignificantprojects.html" CLASS="topnav">Who Is Ken Wiens</A><BR>');
	}
}

function writesubnav() 
{
	document.write('<FONT CLASS="subnav">');
	
	if (HTMLsubpagename == "ClientList")
	{
		document.write('&nbsp; &nbsp;  - <A HREF="qualificationssignificantprojects.html" CLASS="subnavselected">Client List</A><BR>');
	}
	else
	{
		document.write('&nbsp; &nbsp;  - <A HREF="qualificationssignificantprojects.html" CLASS="subnav">Client List</A><BR>');
	}
	
	if (HTMLsubpagename == "WhoIsKenWiens")
	{
		document.write('&nbsp; &nbsp;  - <A HREF="aboutkgw.html" CLASS="subnavselected">CV</A><BR>');
	}
	else
	{
		document.write('&nbsp; &nbsp;  - <A HREF="aboutkgw.html" CLASS="subnav">CV</A><BR>');
	}
	
	if (HTMLsubpagename == "Testimonials")
	{
		document.write('&nbsp; &nbsp;  - <A HREF="qsp-testimonials.tml" CLASS="subnavselected">Client Feedback</A><BR>');
	}
	else
	{
		document.write('&nbsp; &nbsp;  - <A HREF="qsp-testimonials.html" CLASS="subnav">Client Feedback</A><BR>');
	}
	document.write('</FONT>');
}

document.write('<IMG SRC="images/blank.gif" HEIGHT="9" WIDTH="1" VSPACE="0" HSPACE="0"><BR>');
document.write('</TD>');


