// JavaScript Document

function newwin(img,xwidth,yheight){
var a = window.open("","new","left='0',top='0',width="+xwidth+",height="+yheight);
a.document.writeln('<html>');
a.document.writeln('<head><title>Obrazová príloha</title></head>');
a.document.writeln('<body style="margin:0;padding:0;">');
a.document.writeln('<a href="#" onclick="window.close();"><img src="'+img+'" border="0" width="'+xwidth+'" height="'+yheight+'"></a>');
a.document.writeln('</body>');
a.document.writeln('</html>');
a.document.close();
}

