// FUNKCE PRO ROZBALOVANI A ZABALOVANI POLOZEK
// ověřeno pro IE + NN + Mozila

 DOM = (document.getElementById) ? 1 : 0;
 NS4 = (document.layers) ? 1 : 0;


function outVieverInfo(menuID)
{
 //alert('mid:'+menuID);

 if (DOM) {
  indicant = document.getElementById(menuID);
  }
 else if (NS4) {
   indicant = document.layers[menuID];
  }
 else {
   indicant = document.all[menuID];
  }

   if (indicant.className == "zapinfo") {
     indicant.className = "vypinfo";
   }
   else {
     indicant.className = "zapinfo";
   }
}
