	var gB = getBrowser();
		
	function stdMouseOver(x,stav)
	{
		if(stav)
		{
			x.style.textDecoration = 'underline';
			if(gB == 1 || gB == 3) {x.style.cursor = 'hand';}
			if(gB == 2 || gB == 4) {x.style.cursor = 'pointer';}
		}
		else
		{
			x.style.cursor = 'none';
			x.style.textDecoration = 'none';
		}		
	}

		
	function callEditorTree(ID)
	{
		document.FORMIX.VIEWTREEEDITOR.value	=	1;
		document.FORMIX.CALLSESSIONID.value		=	ID;
		document.FORMIX.submit();
	}
		
	function setSection(ID, _ID, pathIcon)
	{
		if(document.getElementById("SECTION_" + ID + "_" + _ID).style.display == 'inline')
		{
			eval("document.images['ICON_" + ID + "'].src = '"+ pathIcon+ "/CLOSETREE.gif'");
			document.getElementById("SECTION_" + ID + "_" + _ID).style.display = 'none';
		}
		else
		{
			eval("document.images['ICON_" + ID + "'].src = '"+ pathIcon+ "/OPENTREE.gif';");
			document.getElementById("SECTION_" + ID + "_" + _ID).style.display = 'inline';		
		}
	}
		
	function stdMouseOver(x,stav)
	{
		if(stav)
		{
			x.style.textDecoration = 'underline';
			if(gB == 1 || gB == 3) {x.style.cursor = 'hand';}
			if(gB == 2 || gB == 4) {x.style.cursor = 'pointer';}
		}
		else
		{
			x.style.cursor = 'none';
			x.style.textDecoration = 'none';
		}		
	}
