function ShowMenu(MENU)
	{
	document.getElementById([MENU]).style.display = "Block";
	}
function HideMenu(MENU)
	{
	document.getElementById([MENU]).style.display = "none";
	}
function PreCache()
	{
	var image1 = new Image();
	image1.src = "../bullet.gif";
	var image2 = new Image();
	image2.src = "../pal_city_park_logo.gif";
	}
function Loading()		
	{
		

		if (document.getElementById) 
		{  
		document.getElementById('load').style.visibility = 'hidden';
		document.getElementById('body').style.display='block';
		}
	else 
		{
		if (document.layers) 
			{
			document.load.visibility = 'hidden';
			document.body.visibility = 'visible';
               		}
		else
			{ 
			document.all.load.style.visibility = 'hidden';
			document.all.body.style.visibility = 'visible';
               		}
		}
	}
function OpenPrint()
	{
	if (doc)
		{
		return false;
		}
	else
		{
		
		var doc = window.open("","win","width=600,height=700,scrollbars=1,resizable=1");
		doc.document.write("<font size=5> Press F5 to print<br></font>");
		var con= document.getElementById('chart').outerHTML;				
		con+="<html>\n<title>Pal City Park</title>\n<head>";
		con+="\n<center>";
		con+="</head><body onLoad='self.print();'>";	
		con+="\n<style type='text/css'>body{font-family:arial;font-size:9pt;}</style>";		
		con+="\n</center>\n</body>\n</html>";					
		doc.document.write(con);		
	        doc.focus();
		
		
		}
		
	  	
	}
function max()
{
if (window.screen) 
	{
		window.moveTo(0,0);
		window.focus();
		window.resizeTo(screen.width,screen.height)

	}
}

