// JavaScript Document



function ImgWinOpen(file,title,w,h)
{
     look='';
     sbars = 0;
     resize = 0;
     if(w > screen.availWidth)
     {
     		w = screen.availWidth-30;
     		sbars = 1;
     		resize = 1;
     }
     if(h > screen.availHeight)
     {
     		h = screen.availHeight-60;
     		sbars = 1;
     		resize = 1;
     }
     
	  look = 'scrollbars=yes, resizable=yes, width='+w+',height='+h+'';
     newWin = window.open(file,'newWindow','toolbar=0,location=0,'+look);
	  newWin.document.write("<html><head><title>"+title+"</title></head>");
	  newWin.document.write("<body leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0 marginwidth=0 marginheight=0 margin=0 onClick='window.close();' style='cursor:pointer;'><img src=" +file+ " / alt='Kliknij, aby zamkn±c okno'>");
	  newWin.document.write("</body></html>");
	 
}

function openNewWindow(id) 
{
		
     window.open('busko.php?id='+id+'', "targetWindow","height=550, width=550,resizable=yes,scrollbars=yes,screenX=0,screenY=0");
}


function wyswietl(T,t){
   T.nextSibling.style.display=t?'block':'none'
  }

