
	<!--



// funckcja podmieniajaca tlo do lewego menu




function zmianaStanu() {

        if (!document.all) return;

        tags = document.all.tags("TD");
        for (var i=0; i<tags.length; i++) {
                if (tags[i].className == "ml0" || tags[i].className=="ml1" || tags[i].className=="ml2" ||  tags[i].className=="ml3" || tags[i].className=="ml4" || tags[i].className == "ml5"    || tags[i].className == "mlx1"     || tags[i].className == "mlx2"   || tags[i].className == "mlx3"    || tags[i].className == "mlx4" || tags[i].className == "mlx5"        ) {
                        tags[i].onmouseover = mouse_over;
                        tags[i].onmouseout = mouse_out;
                        tags[i].onclick = mouse_click;
                }
        }

        storeBColor = null;
        storeLColor = null;
        
        
       


        
        
        function mouse_over() {
		

        		
        	
                 if (this.className == "ml0" || this.className == "ml1" || this.className == "ml2" || this.className == "ml3" || this.className=="ml4" || this.className=="ml5" || this.className=="mlx1" || this.className=="mlx2" || this.className=="mlx3" || this.className=="mlx4"|| this.className=="mlx5"|| this.className=="lewa_tab_1_uwaga_bg" || this.className=="td_nag") {
                        storeBColor = this.style.backgroundColor;
	      	                
                        //this.style.backgroundColor = "#e2e2e2";
                        this.style.backgroundColor = '#f1f1f1';
                        this.style.borderLeft="#d6e0eb 0px solid";
                        this.style.borderRight="#FF7E00 0px solid";
                        this.style.borderTop="#d6e0eb 0px solid";
                        this.style.borderBottom="#d6e0eb 0px solid";
                        
                        
                }



               this.style.cursor = "hand";
	}


        function mouse_out() {
                if (this.className == "ml0" || this.className == "ml1" || this.className == "ml2" || this.className == "ml3" || this.className == "ml4" ||this.className=="ml5" || this.className=="mlx1" || this.className=="mlx2" || this.className=="mlx3" || this.className=="mlx4"|| this.className=="mlx5")
                {
                        this.style.backgroundColor = storeBColor;
                        this.style.borderLeft="#d6e0eb 0px solid";
                        this.style.borderRight="red 0px solid";
                        this.style.borderTop="#d6e0eb 0px solid";
                        this.style.borderBottom="#d6e0eb 0px solid";
                }

            


        }
        function mouse_click() {
//         document.form_drzewko.submit();
                  this.all.tags("A")[0].click();
        }

}





	// -->
