function openPictureWindow_Fever(imageName,imageWidth,imageHeight,alt,posLeft,posTop) {
	windowWidth=imageWidth; windowHeight=imageHeight; s="no";
	x = (screen.width/2)-(imageWidth/2); // ustalam współrzędne poziome
    y = (screen.height/2)-(imageHeight/2); // ustalam współrzędne pionowe
	newWindow = window.open("","newWindow","Scrollbars="+s+",width="+windowWidth+",height="+windowHeight+",left="+x+",top="+y);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
	newWindow.document.write('<a href="#" onClick="self.close()" title="kliknij, aby zamknac"><img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+alt+'></a>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
