function okno3(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>Stowarzyszenie OPTA</title>");
new_window.document.write("</head>")
new_window.document.write("<body bgcolor=\"#F0F0F0\" 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();  
}
// --- dla html'a
function okno2(url,width,height) 
{
newwin2 = window.open(url,'okno2',"width=" + width + ",height=" + height+"");
newwin2.focus();
}
// nowe okno z napisem WCZYTUJE DANE
function okno(url,width,height) 
{
new_window = window.open("","","width=" + width + ",height=" + height+"");
new_window.focus();
new_window.document.open();
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>Stowarzyszenie OPTA</title>");
new_window.document.write("<link href=\"http://www.opta.org.pl/style.css\" rel=\"stylesheet\" media=\"screen\">");
new_window.document.write("</head>")
// tabelka ze zdjeciem
new_window.document.write("<body bgcolor=\"#E6EBEE\" leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
new_window.document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" height=\"100%\">");
new_window.document.write("<tr>");
new_window.document.write("<td class=\"wczytuje\" valign=\"middle\" align=\"center\"><img src="+url);
new_window.document.write(" border=\"0\"></a></td>");
new_window.document.write("</tr>");
new_window.document.write("</table>");
new_window.document.write("</body></html>");
new_window.document.close();  
}
