/*
<SCRIPT language="JavaScript" src="/common/scripts/RevealText.js" type="text/javascript"></SCRIPT>
*/

//
// function to hide/reveal text on click
//
function ToggleSection(id)	{	
		
    var element = document.getElementById("MenuItem_" + id);
		
    if ( element.style.display == "block" ) 		
         element.style.display = "none";
    else
         element.style.display = "block";
}

//		
// Sets the TOPIC frame to the specified URL.
// optionally reset the MENU frame.
//
function ChangeTopicFrame(TargetURL, bResetMenu) 
	{		
		// set the Topic frame to the specified page when expanding the menu items.
		parent.parent.fra_Topic.location.href =  TargetURL;
    
		// reset the menus. (used for "home" links)
	    if (bResetMenu == 'true')
		    parent.parent.Fra_Menu.location.href = '/menu.htm'
    }