<!--
    function zobrazit_mapu(id){
        if(id==-1){
            window.open("mapa.php" ,"_blank","top=0,left=0,location=no,status=no,scrollbars=no,resizable=no,width="+ (screen.availWidth-1) +", height=" + (screen.availHeight-38));
        }else{
            window.open("mapa.php?id_zavodu="+id ,"_blank","top=0,left=0,location=no,status=no,scrollbars=no,resizable=no,width="+ (screen.availWidth-1) +", height=" + (screen.availHeight-38));
        }
    }
    
    function zobrazit_chat(){
        window.open("chat.php" ,"_blank","top="+screen.height/20+",left="+(screen.height/4)+",location=no,status=no,scrollbars=no,resizable=no,width=1024, height=510");
    }

    function zobrazit_konzoli(){
        window.open("konzole.php" ,"_blank","top="+screen.height/20+",left="+(screen.height/4)+",location=no,status=no,scrollbars=yes,resizable=no,width=640, height=400");
    }    
    function selectLink(id)
    {
	     document.getElementById(id).focus();
	     document.getElementById(id).select();
    }
    function showWMTT(id) {
       nicky_ip=true;
       document.onmousemove = updateWMTT;  
       wmtt = document.getElementById(id);
    	 wmtt.style.display = "block";
    	 
    }
    
    function hideWMTT() {
       nicky_ip=false;
    	 wmtt.style.display = "none";
    	 document.onmousemove = "none";
    }
     
    function updateWMTT(e) {
     	 x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
    	 y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
    	 if (wmtt != null) {
    	   wmtt.style.left = (x - 100) + "px";
    		 wmtt.style.top 	= (y + 10) + "px";
    	 }
    }  
	    
	function SelectAll(a) {
		for(var x=0;x<a.elements.length;x++) {
			var y=a.elements[x];
			if(y.name!='ALL') y.checked=a.ALL.checked;
		}
	}
    
    
    -->          
