<!--

function okno(jmeno,x,y,title,alt)
{
var okno=window.open('','okno','width='+x+',height='+y+',resizble=0, menubar=0,toolbar=0,left=20,top=20,directories=0,location=0, scroolbars=0,copyhistory=0');
okno.document.open();
okno.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<title>'+title+'</title>\n<meta http-equiv="Content-Type" content="text/html; charset=utf-8">\n</head>\n<body style="margin:0; padding:0; border:0;">');
okno.document.writeln('<img src="'+jmeno+'" title="'+alt+'" />');
okno.document.writeln('</body>\n</html>');
okno.document.close();
}

-->

