// Boilerplate.js 	25 May 2008 	[GF]

var unHide="noHide"; 
function Hide()
{
	var k=0-1;
	if(document.all.sub1.className != "Hide")
	{
		for(i=0; i < 500000; i++) {k++;};
		document.all.sub1.className="Hide";
	};
	if(document.all.sub2.className != "Hide")
	{
		for(i=0; i < 500000; i++) {k++;};
		document.all.sub2.className="Hide";
	};
	if(document.all.sub3.className != "Hide")
	{
		for(i=0; i < 500000; i++) {k++;};
		document.all.sub3.className="Hide";
	};
};

var menuList =
		'<table width="75" border="0" cellspacing="0" cellpadding="5"'
	+ '	 style="font-size:80%;">'
	+ '<tr>' // home
		+ '<td width="75"><a id="Home" href="Index.html"'
			+ 'title="Home Page">Home</a><br><br></td>'
		+ '</td>'
	+ '</tr>'
	+ '<tr>' // Artist
		+ '<td width="75"><a id="artist" href="Artist.htm"'
			+ 'title="Information about the Artist">Artist</a><br><br></td>'
		+ '</td>'
	+ '</tr>'
	+ '<tr>' // Art
		+ '<td width="75"><a id="art" href="Art.htm"' 
			+ 'onmouseover="Hide();document.all.sub3.className=unHide;""'
			+ 'title="Art from the Chittlin Circuit Review">Art</a><br><br></td>';
	+ '</tr>'

	menuList += '<tr>' //  Murals
		+ '<td><a id="murals" href="Murals.htm"' //  sub2  
		+ 'title="An overview of Rik\'s murals"'
		+ '>Murals</a><br><br></td></tr>'
	+ '<tr>' //  Tour
	+ '<td><a id="tour" href="Tour.htm"'
		+ 'title="Where the Chittlin Circuit Review is going next">Tour</a><br><br></td>'
	+ '</tr>'
	+ '<tr>' //  Video
	+ '<td colspan="2"><a id="video" href="Video.htm"'
		+ 'title="A video interview with Rik">Documentary</a></td>'
	+ '</tr>'
	+ '</tr>'
	+ '</table>';

function PopUp(It,w,h)	{ // --------- PopUp -----------
		var pg='popImage.htm?'+It;
		var ww = 0+w+50;
		var hh = 0+h+150;
		open(pg,'nwin','width=' + ww + ',height=' + hh + ',scrollbars=yes,resizable=yes');
		}

function Footer() /*Used at the foot of every page*/
{
var now = new Date();

var test = 'x' + location;
test = test.slice(0,100);
var Loc=test.split("/");

Page = document.title;

foot = '<br clear="all"><table width="100%" style="color:gray;font-size:80%;"><tr>' // bar
	+ '<td>' // left
		+ '&nbsp; &copy;' + now.getFullYear() 
		+ ' <a style="color:gray;" href="mailto:rikfreeman@aol.com">RikFreeman@aol.com</a>'
		+ ' &nbsp; &nbsp; 202-399-4111 </td>'
	+ '<td align="Right">' // right
		+ '<img src="http://www.GFarnsworth.com/home/Hitcounter.cfm?site=RikFreeman&Page=' 
		+ Page + '" width="1" height="1" border="0">'
		+ '<a style="color:gray; font-weight:normal;" href="http://www.GFarnsworth.com">Webmaster</a> &nbsp;'
		+ '<a style="color:gray; font-weight:normal;" target="_blank" '
		+ ' href="http://www.gfarnsworth.com/Home/HitReport.cfm?Site=RikFreeman">Hits</a>'
	+ '&nbsp; </td>'
+ '</tr></table>'
+ '</body></html>';

document.write(foot);
}
