var fntCount = 1;

// Click handler to opens the Help pop-up window with instructions for
// dynamic features within the History pages.
function openHelp()
	{
	var winLeft = (screen.width / 2) - 350;
	var winTop = (screen.height /2) - 325;
	
	var windowFeatures = "width=700,height=600,resizable,scrollbars,";
	windowFeatures = windowFeatures + "left=" + winLeft + ",";
	windowFeatures = windowFeatures + "top=" + winTop;
	
	var infoWindow;
	infoWindow = window.open("./History/historyHelp.htm", "historyHelp", windowFeatures);
	}


// Click handler to open and close Detail lists for each king.
function toggleView(king, button) 
	{
	submenu = document.getElementById(king);
	
	if (submenu.style.display == "") 
		{
		submenu.style.display = "none";
		document.getElementById(button).value = "Show Detail Lists"
		}
	else 
		{
		submenu.style.display = "";
		document.getElementById(button).value = "Hide Detail Lists"
		}
	}
