function switchOn(objName)
{
	obj = document.getElementById(objName)
	if (obj)
		obj.style.visibility = "visible";
}

function switchOff(objName)
{
	obj = document.getElementById(objName)
	if (obj)
		obj.style.visibility = "hidden";
}
