// javascript to produce the navigation table used at bottom of each page
// matches navnhdr1.js, used to produce active buttons on top of each page
// V 3 06 05 25
// ensured class names are lower case
// re-grouped the links


// used for email
user = 'ClampGuy';
site = 'theclampguy.info';

var Start 	= ' <p class="navmid"> '
var Close 	= ' </p> '

// Clamps as Product
Line	 = ' <a href="site.htm#PROD">Products:</a> ' 
Line	+= ' [ <a href="mkwc.htm"> all wood (WC)</a> ] '
Line	+= ' [ <a href="mkcc.htm"> metal and wood (CC)</a> ] '
Line	+= ' [ <a href="mkbc.htm"> bar clamps (BC)</a> ] '
document.write ( Start + Line + Close )


Line	 = ' [ <a href="dlrs.htm">Dealers</a> ] '
Line 	+= ' [ <a href="brnd.htm">Brands</a> ] '
Line	+= ' [ <a href="onrs.htm">Users/ Owners</a> ] '
Line	+= ' [ <a href="vntr.htm">Inventors</a> ] '
document.write ( Start + Line + Close )

// Company Info

Line	 = ' <a href="site.htm#INFO">Companies:</a> ' 
Line	+= ' [ <a href="hist.htm">History</a> ] ' 
Line	+= ' [ <a href="mdls.htm">Models</a> ] ' 
Line	+= ' [ <a href="ptnt.htm">Patents</a> ] ' 
Line	+= ' [ <a href="grfx.htm">Graphics</a> ] ' 
document.write ( Start + Line + Close )

Line	 = ' [ <a href="stat.htm">States</a> ] ' 
Line	+= ' [ <a href="frgn.htm">Foreign</a> ] ' 
document.write ( Start + Line + Close )

// Clamps as things

Line	 = ' <a href="site.htm#THNG">Things:</a> ' 
Line	+= ' [ <a href="care.htm">Care/ Handling</a> ] ' 
Line	+= ' [ <a href="fgid.htm">Field Guide</a> ] ' 
Line	+= ' [ <a href="prix.htm">Prices</a> ] ' 
document.write ( Start + Line + Close )

// Site Information

Line	 = ' <a href="site.htm#THNG">Site:</a> ' 
Line	+= ' [ <a href="ntro.htm">Introduction</a> ] ' 
Line	+= ' [ <a href="rsrc.htm">Research Resources</a> ] ' 
Line	+= ' [ <a href="plcy.htm">Policies</a> ] ' 
Line	+= ' [ <a href="hnrs.htm">Thanks</a> ] ' 
Line	+= ' [ <a href="wcj.htm">Journal</a> ] ' 
document.write ( Start + Line + Close )

Line	 = ' <a href="link.htm">Links:</a>  ' 
Line	+= ' [ <a href="link_soc.htm">Societies</a> ] '
Line	+= ' [ <a href="link_com.htm">Companies</a> ] '
Line	+= ' [ <a href="link_ppl.htm">Enthusiasts</a> ] '
document.write ( Start + Line + Close )


// Site Services
Line	 = ' [ <a href="util.htm#MAIL">Join Mail List</a> ] ' 
Line	+= ' [ <a href="util.htm#LINK">Request Free Link</a> ] ' 
Line	+= ' [ <a href="MAILTO:' + user + '@' + site + '">E-mail</a> ] ' 
document.write ( Start + Line + Close )


Line	 = ' [ <a href="index.htm#FIND">Search Site</a> ] ' 
Line	+= ' [ <a href="index.htm#REGR">Watch for Changes</a> ] '
Line	+= ' [ <a href="index.htm#NEWS">News and Research</a> ] ' 
document.write ( Start + Line + Close )

// Shameless Commerce
Line	 = ' [ Shameless Commerce: <a href="comm.htm">Book Survey</a> ] ' 
document.write ( Start + Line + Close )

// Other
Line	 = ' [ <a href="javascript:history.back(1)">Go Back</a> ] '
Line	+= ' [ <a href="javascript:;"  onclick="window.print();return false">Print this page.</a> ] '
// Line	+= ' [ <a href="javascript:window.external.AddFavorite('http://theclampguy.info', 'Wooden Clamps')"> Add Bookmark!</a> ] '

Line	+= ' [ <a href="javascript:history.forward(1)">Go Forward</a> ] '
document.write ( Start + Line + Close )

Start	 = ' <p class="navbot"> '

Line	 = ' [ <a href="index.htm">Home</a> ] '
document.write ( Start + Line + Close )


