
	function outputMenuItem( name, page, current){
		document.write("<td  class=\"menu\">");
		if (name == current)
			document.write("<span class=\"menuhi\">" + name + "</a></td>");
		else {			
			document.write("<a href=\"" + page + "\">");
			//document.write("<font color=\"#000000\">" + name + "</a></td>");
			document.write( name + "</a></td>");
		}
		document.write("<td>*</td>");
	}

	
	function outputMenu( sPage){
		document.write("<table cellpadding=0 cellspacing=0 bgcolor=\"#FFFFCC\">");
		document.write("<tr><td>*</td>");
		outputMenuItem("Home", "index.html", sPage);
		outputMenuItem("Reviews", "Reviews.htm", sPage);
		outputMenuItem("Recordings", "recordings.htm", sPage);
        outputMenuItem("Musical Examples", "MusicalExamples.htm", sPage); 
		outputMenuItem("Photos", "photos.htm", sPage);
		document.write("</tr>");		
		document.write("</table>");
	}		

	function outputPageHeader( sPage ){
		// Output the page logo
		document.write("<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"#FFFFCC\" class=\"MMhide_tableHeader\">");
		document.write("<tr>");
		document.write("<td width=\"18%\" align=\"center\" nowrap bgcolor=\"#FFFFCC\">");
		document.write("<img src=\"http://www.jedwentz.com/images/unknown_handel_box_cover.jpg\" width=\"100\" height=\"97\" hspace=\"0\" vspace=\"0\" align=\"LEFT\"></td>");
		document.write("<td width=\"82%\" align=\"left\" bgcolor=\"#FFFFCC\">");
		document.write("<p><font size=\"7\" face=\"Georgia, Times New Roman, Times, serif\" color=\"#000066\"><b><i>Musica ad Rhenum</i></b></font></p>");
		outputMenu(sPage);
		document.write("</td></tr></table>");
	}		

