
function MM_showHideLayers(sID, sType, sColor)
{
	var obDiv = document.getElementById(sID);
	obDiv.style.visibility = sType;
	if (sColor == "")
	{
		return;
	}
	obDiv.parentElement.style.background = sColor;
}
