<!--
	// Call to toggle the show/hide state of a particular named element
	function showToggle(panelID) 
	{
		var panel = document.getElementById(panelID);
		if (panel != null) {
			if (panel.style.visibility == "hidden") {
				panel.style.display = "block";
				panel.style.visibility = "visible";
			} 
			else {
				panel.style.display = "none";
				panel.style.visibility = "hidden";               
			}
		}
	}
// -->
<!--
	// Call to toggle the show/hide state of all collapsible elements on form
	function showToggleAll()
	{
		var allDIVs = document.getElementsByTagName("div");
		for(i=0;i<allDIVs.length;i++)
		{
			e=allDIVs.item(i);
			if ( e.id.indexOf("collapse") != -1 )
			  showToggle(e.id) ;
		}
	}
// -->
<!--
	// Should be called in BODY OnLoad to initialize all needed evb processing
	function evbOnLoad() 
	{
		// 11/08/08 - CCALEY - Don't need to toggle collapsible elements on page
		//                     load as they are built collapsed now in the code.
		//showToggleAll();
	}
// -->
<!--
	// 11/18/08 - CCALEY - Created to be called in BODY UnLoad to clean up Google
	//                     Map memory allocations if necessary.
	function evbUnLoad() 
	{
		if (document.getElementById('mapGoogle'))
		{
			GUnload();	
		}
	}
// -->
<!--
	// Call to popup a new browser window for forms entry, etc.
	function popup(page,query) 
	{
		// Window propertires include:  top, left, toolbars, scrollbars,
		// menubar, location, statusbar, and resizable
		url = page + "?" + query;
		window.open(url, "", "left=212, top=100, width=600, height=468, resizable=yes, scrollbars=yes, status=yes");
	}
// -->
