<!--
var okno_f

function closeZoom() {

	if (okno_f && !okno_f.closed) okno_f.close()
}

function zoom(f, szer, wys) {
	closeZoom()
	output="<html><head><title>Galeria</title></head>"
	output+="<body bgcolor='#F4F7DF' topmargin='0' leftmargin='0'>"
	output+="<div style='cursor: hand; position: relative; left: 0; top: 0; width: 100%; height: 100%' onClick='javascript:window.close()'>"
	output+="<img src="+f+" alt='Kliknij aby zamkn±ć powiększenie' height="+wys+" width = "+szer+"></div></body></html>"
	okno_f = window.open ('','Galeria','width=' + szer + ',height=' + wys + ',menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no');
	okno_f.document.write(output);
}

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}


function displayWindow(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no' );
}


function borderFlash(id) { 
	id.style.border='1px solid #FFB404';
	id.style.cursor='hand';
} 

function borderNormal(id) { 
	id.style.border='1px solid #C1CB88';
} 

//-->
