<!--
function Show(Object)
{
if (navigator.appName == 'Netscape' && document.layers != null)
	{if (document.layers) document.layers[Object].visibility = 'show';}
else if (document.all != null)
	{if (document.all[Object]) document.all[Object].style.visibility = 'visible';}
}

function Hide(Object)
{
if (navigator.appName == 'Netscape' && document.layers != null)
	{if (document.layers) document.layers[Object].visibility = 'hide';}
else if (document.all != null)
	{if (document.all[Object]) document.all[Object].style.visibility = 'hidden';}
}
-->