<!--
function AddBookmark() 
{
	var url = document.location.href;
	//var title = document.getElementById("SectionHeaderH1").innerHTML
	var title = document.title;
 
	if (navigator.appName != 'Microsoft Internet Explorer') 
	{
		window.sidebar.addPanel(title,url,"");
		//Third Param left blank 
	} 
	
	else 
	{ 
		window.external.AddFavorite(url,title); 
	} 
} 

function EmailLink()
{
	var u = window.location;
	var m = document.title+" Link";
	//window.location = "mailto:?subject="+m+"&body="+document.title+" "+u;
	window.location = "mailto:?subject="+m+"&body="+u;
}

function Print() 
{
	//var w = location.href+"?print=true";
	var u = location.search.substring(1); 
	var l = location.href
	var w = l += (u?"&":"?") + "print=true";
	var load = window.open(w,'','scrollbars=yes,menubar=yes,height=800,width=900,resizable=yes,toolbar=no,location=no,status=no');	
}

function Display(v)
{
    intID = v;
	document.getElementById("show" + v).className = "visible";
	document.getElementById("show_view" + v).className = "hidden";
}

function Hide(v)
{
    intID = v;
	document.getElementById("show" + v).className = "hidden";
	document.getElementById("show_view" + v).className = "visible";
}

function GoQuickMenu()
{
	with (window.document.forms.Form1)
	{
		if (QuickMenu.options[QuickMenu.selectedIndex].value != "")
			location.href = QuickMenu.options[QuickMenu.selectedIndex].value;
	}
}

function Leaving(URL)
{
   if(confirm("You are now exiting the City of Modesto Web Site. The City of Modesto is not responsible for the content of linked pages. To continue, click OK."))
   {
      var l = location.href
      window.open(l=URL);
   }
}

// -->