function otworzOkno(imageName,imageWidth,imageHeight,posLeft,posTop,windowscroll) 
{
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop+",scrollbars="+windowscroll);
	newWindow.document.open();
	newWindow.document.write('<html><title>Dagnez</title><body bgcolor="#000000" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<a href="javascript:self.close()"><img src='+imageName+' border="0"></a>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

