

function show(x){
if(document.layers)// NN 4.x
{
document.layers[x].visibility="show";
}
if (document.all && !document.getElementById) // IE 4
{
document.all[x].style.visibility="visible";
}
if (document.getElementById) // IE 5.x und NN 6
{
document.getElementById(x).style.visibility="visible";
}
}


function hide(x){ 
if(document.layers)// NN 4.x
{
document.layers[x].visibility="hide";
}
if (document.all && !document.getElementById) // IE 4
{
document.all[x].style.visibility="hidden";
}
if (document.getElementById) // IE 5.x und NN 6
{
document.getElementById(x).style.visibility="hidden";
}
}

   function MM_openBrWindow(theURL,winName,features) { 
         window.open(theURL,winName,features);
   }
