<!--
kolejne=0;

function showImg(pathImg,widthImg,heightImg) {

	var htmlWindow='';
	nameWindow='w' + kolejne;

	ScreenH = (screen.height - heightImg) / 2;
	ScreenW = (screen.width - widthImg) / 2;
	configImg='left='+ScreenW+',top='+ScreenH+',width='+widthImg+',height='+heightImg+',innerheight='+heightImg+',innerwidth='+widthImg+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,titlebar=no';

	windowH=window.open('',kolejne,configImg)

	htmlWindow+='<html><head>';
	htmlWindow+='<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">';
	htmlWindow+='<title>Fotografie - MPU</title>';
	htmlWindow+='</head>';
	htmlWindow+='<body bgcolor="#ffffff" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">';
	htmlWindow+='<div align="center">';
	htmlWindow+='<a href="#" onclick="javascript:self.close();"><img src='+pathImg+' border="0" alt="" /></a></div>';
	htmlWindow+='</body></html>';

	windowH.document.write(htmlWindow);
	windowH.focus();
	kolejne+=1;
}

//-->
