var ie = (document.styleSheets&&document.all)? 1:0;
var ie4 = (navigator.userAgent.indexOf('MSIE 4') > 0)? 1:0;

// délka tabulky
var width = 200;
var height = document.body.offsetHeight-4;

// zapíše tabulku
function zapis(text) {
   x=document.getElementById ? document.getElementById("popisek"): document.all["popisek"]
   x.innerHTML = "<TABLE border=\"0\" style=\"border: 1px solid #0000FF;height: "+height+";width: "+width+"; align: top\" bgcolor=\"#EEEEEE\"><TR><TD>"+text+"</TD></TR></TABLE>";
   if (ie){
      docWidth = document.body.clientWidth;
      if (ie4) {
         document.all["popisek"].style.pixelTop =  document.body.scrollTop+1;
         document.all["popisek"].style.pixelLeft = document.body.clientWidth/2+300;
      }else{
         document.all["popisek"].style.pixelTop = document.body.scrollTop+1;
         document.all["popisek"].style.pixelLeft = document.body.clientWidth/2+300;
      };
      if (width>docWidth){
         document.all["popisek"].style.pixelLeft = 0;
      }else if (docWidth<(width+document.all["popisek"].style.pixelLeft)) {
         document.all["popisek"].style.pixelLeft = docWidth-width;
      };
   }else{
      document.onmousemove = NS;
   }

};

// smaže tabulku
function smaz() {
   x=document.getElementById ? document.getElementById("popisek"): document.all["popisek"]
   x.innerHTML = "";
};

// přepisuje tabulku při pohybu myši
function prepis() {
   if (ie){
      docWidth = document.body.clientWidth;
      if (ie4) {
         document.all["popisek"].style.pixelTop =  event.y+5;
         document.all["popisek"].style.pixelLeft = event.x+10;
      }else{
         document.all["popisek"].style.pixelTop = event.y+5+document.body.scrollTop;
         document.all["popisek"].style.pixelLeft = event.x+10;
      };
      if (width>docWidth){
         document.all["popisek"].style.pixelLeft = 0;
      }else if (docWidth<(width+document.all["popisek"].style.pixelLeft)) {
         document.all["popisek"].style.pixelLeft = docWidth-width;
      };
   }else{
      document.onmousemove = NS;
   }
};

// pomocná funkce pro přesun pod jinými prohlížeči než IE
function NS(x) {
   docWidth = self.innerWidth;
   if (width>docWidth){
      document.getElementById("popisek").style.left = 0;
   }else if (docWidth<(width+x.pageX+10)) {
      document.getElementById("popisek").style.left = docWidth-width;
   }else{
      document.getElementById("popisek").style.left = x.pageX+10;
   };
   document.getElementById("popisek").style.top = x.pageY+5;
};