﻿
function okno2(obr){
dyn_okno = window.open("","dyn_okno",
"height=500px, width=500px, top=0, left=100px, resizable=no, status=no, toolbar=no,location=no, scrollbars=no, resizable=no");
dyn_okno.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd \n">');
dyn_okno.document.write("<html>");
dyn_okno.document.write("<head>");
dyn_okno.document.write('<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">');
dyn_okno.document.write("</head>");
dyn_okno.document.write('<body>');
dyn_okno.document.write("<img src="+obr+" title='Zavřít okno' onclick='window.close();' width='480px' alt=''>");
dyn_okno.document.write("</body>");
dyn_okno.document.write("</html>");
}




