function Zaladuj(URL)
{
 tmp=new Image();
 return tmp.src=URL;
}

function Podmien(img, url)
{
 img.src = url;
}

function Otworz(url)
{
 okno =  window.open("", "", 'toolbar=0,directories=0,location=0,menubar=0,resizable=0,status=0,toolbar=0,width=20,height=20');

 //okno.dokument.open();
 okno.document.write('<html><body leftmargin="0" rightmargin="0" bottommargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#ffffff">');
 okno.document.write("<table border='0' width='100%' heigth='100%'><tr><td valign='middle' align='center'><img src='" + url + "' onload='window.resizeTo(this.width + 40, this.height + 40);' vspace='0' hspace='0' /></td></tr></table>");
 okno.document.write("</body></html>");
// okno.dokument.close();
}

