// JavaScript Document
var poslednizobrazeny='';

function nastavstyl(nazevel,styl){
  if(document.all){ // IE 4 or 5 (or 6 beta)
    eval("document.all." +nazevel+ ".style.display = styl");
  }
  else
  if (document.layers) { // NETSCAPE 4 or below
    document.layers[nazevel].display = styl;
  }
  else
  if (document.getElementById) { // OTHERS
    document.getElementById(nazevel).style.display = styl;
  }
}

function text(i){
  if (poslednizobrazeny!=''){
    nastavstyl(poslednizobrazeny,'none');
  };
 
  if (poslednizobrazeny==i)
    poslednizobrazeny='';
  else{
    nastavstyl(i,'');
    poslednizobrazeny=i;
  };
};
