// JavaScript Document

function wysokosc() { 
    var m = document.getElementById('tresc'); 
//    m.style.height='auto'; 
    var x = m.offsetHeight-90; 
    m.style.height = x + "px"; 
} 

function kolumna_lewa() { 
    var m = document.getElementById('tresc'); 
	var n = document.getElementById('lewa_gora'); 
	var y = document.getElementById('lewa_dol'); 
//    m.style.height='auto'; 
    var x = m.offsetHeight-n.offsetHeight; 
    y.style.height = x + "px"; 
} 

function kolumna_prawa() { 
    var m = document.getElementById('tresc'); 
	var n = document.getElementById('prawa_gora'); 
	var y = document.getElementById('prawa_dol'); 
//    m.style.height='auto'; 
    var x = m.offsetHeight-n.offsetHeight; 
    y.style.height = x + "px"; 
} 



function kolumna_lewa_podstrona() { 
    var m = document.getElementById('tresc'); 
	var y = document.getElementById('lewa_podstrona'); 
//    m.style.height='auto'; 
    var x = m.offsetHeight; 
    y.style.height = x + "px"; 
} 

function kolumna_prawa_podstrona() { 
    var m = document.getElementById('tresc');  
	var y = document.getElementById('srodek_podstrona'); 
//    m.style.height='auto'; 
    var x = m.offsetHeight; 
    y.style.height = x + "px"; 
} 

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='+sbars+', resizable='+resize+', 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");
}
