var Win;
function zamknij(){if(Win)Win.close()};
function displayWindow(url, width, height, name) 
{
var Size = "width=" + width + ",height=" + height;
Win=window.open("","url",Size,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0');
Win.document.open;
Win.document.writeln("<HTML><HEAD><TITLE>" + name + " </TITLE></HEAD><BODY marginheight=0 marginwidth=0 BGCOLOR=\"#000000\" LEFTMARGIN=\"0\" TOPMARGIN=\"0\"><IMG SRC=\"" + url + "\"></BODY></HTML>");
Win.document.close;
Win.focus();
}

