function popup(url,width,height) 
{
new_window = window.open("","","width=" + width + ",height=" + height+"");
new_window.focus();
// na gore
new_window.document.open();
// co w oknie
new_window.document.write("<html>")
new_window.document.write("<head>")
new_window.document.write("<meta http-equiv=\"content-type\" content=\"text/html;charset=ISO-8859-2\">");
new_window.document.write("<title>ARCOM</title>");
new_window.document.write("</head>")
new_window.document.write("<body bgcolor=\"#FFFFFF\" leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
new_window.document.write("<img src="+ url + ">");
new_window.document.write("</body></html>");
// ---
new_window.document.close();  
}