function openwin (url,x,y,naziv) {
	var par='location=no,width='+x+',height='+y+',resizable=yes,scrollbars=no';

	win=window.open('','',par);
	win.document.open();
	win.document.write('<html><head><style type=text/css><!--body {margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px;}--></style>');
	win.document.write('<title>'+naziv+'</title></head><body><img src='+url+' onclick="window.close();"></body></html>');
	win.document.close();
}