var Win1;

function displayWindow(url, width, height) {

var rozm_x = width+30;
var rozm_y = height+110;

Win1 = window.open("","displayWindow1",'width=' + rozm_x + ',height=' + rozm_y + ',resizable=yes,scrollbars=no,menubar=no,top=0,left=0' );
Win1.resizeTo(rozm_x,rozm_y );
Win1.focus();
Win1.document.write('<head>');
Win1.document.write("<title>PRA'ART</title>");
Win1.document.write('</head>');
Win1.document.write('<body bgcolor="#ffffff">');
Win1.document.write('<a href="javascript:window.close()">');
Win1.document.write('<img src="' + url + '" width=' + width + ' height=' + height + ' border=0' + ' alt="close" style="border: 2px solid #000000;">');
Win1.document.write('</a>');
Win1.document.write('</body>');
Win1.document.close();

}