// 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="150" border="0" cellspacing="0" cellpadding="5"'
	+ '	 style="font-size:80%;">'
	+ ' <tr>' // home 
	+ '<td width="150" colspan="2"><a id="home" href="Index.html"'
	+ ' onmouseover="Hide();">Home</a><br><br></td>'
	+ '</tr>'
	+ '<tr>' // Artist
	+ '<td width="75"><a id="artist" href="Artist.htm"'
		+ 'title="Information about the Artist"'
		+ ' onmouseover="Hide();document.all.sub1.className=unHide;">Artist</a></td>'
	+ '<td width="75" class="hide" id="sub1" bgcolor="#d1d1d1">'//sub1
		+ '<a href="Artist.htm" id="artist1" '
		+ 'title="Information about the Artist">Bio</a><br>'
		+ '<a href="Resume.htm" id="resume"'
		+ 'title="The Artist\'s History">Resum&eacute;</a><br>'
		+ '<a href="ContactRik.htm" id="contact"'
		+ 'title="How to get in touch with the Artist">Contact</a>'
	+ '</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></td>'
	  + '<td width="75" class="hide" id="sub3" bgcolor="#d1d1d1">'//sub3
			+ '<a href="Art.htm" id="art1" '
			+ 'title="Art from the Chittlin Circuit Review">Chittlin&nbsp;Circuit&nbsp;Review</a><br>'
			+ '<a href="Art2.htm" id="art2"'
			+ 'title="Recent Work">Recent&nbsp;Work</a>'
	+ '</td>'
	+ '</tr>'
	+ '<tr>' //  Murals
	+ '<td><a id="murals" href="Murals.htm"' //  sub2  
	+ ' onmouseover="Hide();document.all.sub2.className=unHide;"'
		+ 'title="An overview of Rik\'s murals"'
		+ '>Murals</a></td>'
	+ '<td width="75" class="hide" id="sub2" bgcolor="#d1d1d1">'
		+ '<a id="arl" href="Mural_Arl.htm"'
			+ 'title="Mural in the Arlington, VA Courthouse"'
			+ '>Arl@200</a><br>'
		+ '<a id="shaw" href="Mural_Shaw.htm"'
			+ 'title="Mural in the Washington DC Convention Center"'
			+ '>Shaw&nbsp;Rythms</a><br>'
		+ '<a id="caverns" href="Mural_Caverns.htm"'
			+ 'title="Mural in the Bohemian Caverns"'
			+ '>Bohemian&nbsp;Caverns</a>'
	+ '</td></tr>'
	+ '<tr>' //  Tour
	+ '<td><a id="tour" href="Tour.htm"'
		+ 'title="Where the Chittlin Circuit Review is going next"'
	+ ' onmouseover="Hide();">Tour</a><br><br></td>'
	+ '</tr>'
	+ '<tr>' //  Video
	+ '<td colspan="2"><a id="video" href="Video.htm"'
		+ 'title="A video interview with Rik"'
	+ ' onmouseover="Hide();">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);
}