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