
function SetActive(menuid_h)
	{
	if (document.all)	
		{
		document.getElementById(menuid_h).style.backgroundImage = "url(/images/button1.gif)"; 
		}
	}

function SetInactive(menuid_h)
	{
	if (document.all)
		{
		document.getElementById(menuid_h).style.backgroundImage = "url(/images/button0.gif)";
		}
	}

