
function picture(arg, titul, x, y)
{
newwindow=window.open("","thewindow","width="+x+",height="+y);
newwindow.document.writeln('<HTML>');
newwindow.document.writeln('<HEAD>');
newwindow.document.writeln('<TITLE>'+titul+'</TITLE>');
newwindow.document.writeln('</HEAD>');
newwindow.document.writeln('<BODY style="margin: 4\">');
newwindow.document.writeln('<IMG SRC="img/'+arg+'" border=1>');
newwindow.document.writeln('</BODY>');
newwindow.document.writeln('</HTML>');
}

