function DynaWin(url, h, w, l, t) {
poph =  h 
popw =  w 
l = screen.width - l - w
disp = window.open("","pop", "height=" + h + ",width=" + w + ",left=" +  120  +",top=" + 120 + "");
content = '<HTML>';
content += '<Title>Bacówka u Józka</Title>';
content += '<link rel="stylesheet" href="styl.css" TYPE="text/css">';
content += '</HEAD>';
content += '<BODY background="images/p01.gif" style="margin-left:0 px; margin-top:0 px;">';
content += '<P ALIGN="left"><img src="' + url + '"><br>';
content += '</BODY></HTML>';
disp.document.write(content);
disp.document.close();
}
