function displayWindow(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no' );
}

function NewWnd(pic,w,h) {
	//w += 20;
	//h += 20;
	nowe=window.open('','',' width=' + w + ', height=' + h + ', top=5, left=5');
	nowe.focus();
	nowe.document.open();
	nowe.document.writeln('<html><head>');
	nowe.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">');
	//nowe.document.writeln('<link href="style.css" rel="stylesheet" type="text/css">');
	nowe.document.writeln('<script type="text/javascript" src="overlib/overlib.js"></script>');
	nowe.document.writeln('</head>');
	nowe.document.writeln('<body style="margin:0px; padding:0px; background-color:#FFFFFF;" onBlur="self.close()">');
	nowe.document.writeln('<div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000;"></div>');
	nowe.document.writeln('<center><img onmouseover="return overlib(\'kliknij w zdjêcie aby zamkn±æ\', WIDTH, 0, FGCOLOR, \'#FFFFFF\');" onmouseout="return nd();" border="0" src="'+pic+'" HEIGHT="'+h+'" WIDTH="'+w+'" alt="" onClick="window.close();"></center>');
	nowe.document.writeln('</body></html>');
	nowe.document.close();
}
