// Chris Kovacs Designs - www.ChrisKovacsDesigns.com
var path;
function head (path){

	document.write ("<table ALIGN=center BORDER=0 WIDTH=600>");
	document.write ("<tr VALIGN=top><td VALIGN=top ALIGN=center WIDTH=100><A HREF=" + path + "index.html><IMG SRC=" + path + "images/ckd.jpg WIDTH=188 HEIGHT=100 BORDER=0 ALT=Home></A></TD>");
	document.write ("<td VALIGN=middle ALIGN=center WIDTH=450>");
	document.write ("<font class=tagline>Makers of Fine Custom Furniture</font></td></tr></table>");
	document.write ("<TABLE ALIGN=center WIDTH=600 CELLSPACING=0 CELLPADDING=0 BORDER=0>");
	document.write ("<TR><TD ALIGN=center WIDTH=600 COLSPAN=7><HR COLOR=#9F700B></TD></TR>");

	document.write ("<TR><TD ALIGN=center WIDTH=85><A CLASS=content HREF=" + path + "wood.html>The Wood</A></TD>");
	document.write ("<TD ALIGN=center WIDTH=90><A CLASS=content HREF=" + path + "finish.html>The Finish</A></TD>");
	document.write ("<TD ALIGN=center WIDTH=90><A CLASS=content HREF=" + path + "details.html>The Details</A></TD>");
	document.write ("<TD ALIGN=center WIDTH=85><A CLASS=content HREF=" + path + "designs.html>The Design</A></TD>");
	document.write ("<TD ALIGN=center WIDTH=100><A CLASS=content HREF=" + path + "gallery.html>The Gallery</A></TD>");
	document.write ("<TD ALIGN=center WIDTH=80><A CLASS=content HREF=" + path + "search.html>Search</A></TD>");
	document.write ("<TD ALIGN=center WIDTH=100><A CLASS=content HREF=" + path + "contact.html>Contact Us</A></TD></TR>");
	document.write ("<TR><TD ALIGN=center WIDTH=600 COLSPAN=7><HR COLOR=#9F700B></TD></TR></TABLE>");
}

//writes footer containing copyright and author at bottom of each page and updates year
function footer() {
var now = new Date();
var thisYear = now.getYear();
// var thisYear = 02; // for debug only
	if(thisYear < 1900){
	thisYear += 1900;
	}
// First year of copyright notice
var startYear = 2000;
	if (startYear == thisYear){
	startYear = "";
	}
	else {
	startYear = startYear + "-";
	}
	document.write ("<table ALIGN=center BORDER=0 WIDTH=600>");
	document.write ("<tr VALIGN=TOP>");
	document.write ("<td ALIGN=center>");
	document.write ("<HR COLOR=#9F700B>");
	document.write ("<DIV CLASS=small>Copyright &copy; " + startYear + thisYear + " Chris Kovacs Designs. All Rights Reserved.</DIV>");
	document.write ("<FONT CLASS=small>Site Design by</FONT> <A CLASS=small HREF=http://www.ibdev.com TARGET=_blank>Internet Business Developers</A>");
	document.write ("</font>");
	document.write ("</td>");
	document.write ("</tr>");
	document.write ("</table>");

}
function nav(){
document.write("<table align=\"center\"><tr><td align=\"center\" valign=\"top\">")
document.write("<a href=wood.html class=small2>The Wood</a>&nbsp;&nbsp;<a href=details.html class=small2>The Details</a>&nbsp;&nbsp;<a href=finish.html class=small2>The Finish</a>&nbsp;&nbsp;<a href=designs.html class=small2>The Designs</a>&nbsp;&nbsp;<a href=gallery.html class=small2>The Gallery</a>&nbsp;&nbsp;<a href=moreimages.html class=small2>More Images</a>&nbsp;&nbsp;<a href=contact.html class=small2>Contact Us</a>")
document.write("</td></tr></table>")

}




