// JavaScript Document

<!-- open fullscreen
function openBrWindow(n){

	h=screen.availHeight;
	w=screen.availWidth;
	contentsWin=window.open("0"+n+"/index.html","contentsWin","width="+w+",height="+h);
	
}
//-->
<!--
function Show_Stuff(Click_Menu)
// Function that will swap the display/no display for
// all content within span tags
{
if (Click_Menu.style.display == "none")
{
Click_Menu.style.display = "";
}
else
{
Click_Menu.style.display = "none";
}
}
-->