// ES 01/02/06 - Added footer function for copyright statements
function menu(section)
{
 		var mypages = new Array()
		mypages[0] = "Home"
		mypages[1] = "Bio"
		mypages[2] = "Songs"
		mypages[3] = "Moon Toons"
		mypages[4] = "Calendar"
		mypages[5] = "Photos"
		mypages[6] = "Contacts"
		
		var mynames = new Array()
		mynames[0] = "home"
		mynames[1] = "bio"
		mynames[2] = "songs"
		mynames[3] = "moontoons"
		mynames[4] = "calendar"
		mynames[5] = "photo"
		mynames[6] = "contacts"
		
 		document.write("<table align=\"center\" width=\"650\" cellspacing=\"0\" cellpadding=\"0\"> <tr align=\"center\">")
		for (i = 0; i < mypages.length; i++)
				{
				if (section!=mynames[i]) document.write("<td width=\"95pt\" class=\"toplines\"><a href=\""+mynames[i]+".html\" class=\"top\">"+mypages[i]+"</a>")
				else document.write("<td width=\"95pt\" class=\"toplinesActive\"><span class=\"topactive\">"+mypages[i]+"</span>")
				document.write("</td><td></td>")
				 }
				
		document.write("</tr></table>")
		}
		

function footer()
{
    document.write("<font size=\"-2\">");
    document.write("Copyright &copy; 2010 by enigmaduo.com. ");
    document.write("Any questions and suggestions concerning web-design e-mail: alexlenk77 at hotmail dot com");
		document.write("<br/>This page was last modified on "+ document.lastModified)
    document.write("</font>");
		document.write("<br /><a href=\"http://www.uscity.net/\"> <img src=\"http://www.uscity.net/link-to-us/uscitysm88.jpg\" width=\"88\" height=\"26\" alt=\"uscity.net internet business directory\" border=\"0\"></a>");
}

function goImgWin(myImage,myWidth,myHeight,origLeft,origTop) {
myHeight += 24;
myWidth += 24;
TheImgWin = window.open(myImage,'image','height=' +
myHeight + ',width=' + myWidth +
',toolbar=no,directories=no,status=no,' +
'menubar=no,scrollbars=no,resizable=no');
TheImgWin.moveTo(origLeft,origTop);
TheImgWin.focus();
}
