function obrazek(obr,x,y)
{
var _x = ((screen.width/2) - (x/2));
var _y = ((screen.height/2) - (y/2));
var win = window.open('', 'obr', 'toolbar=0,menubar=0,scrollbars=0,resizable=0,status=0,location=0, directories=0,top='+_y+',left='+_x+',height='+y+',width='+x);
win.document.write('<HTML><HEAD></HEAD>');
win.document.write('<link rel=StyleSheet type=text/css href="style.css">');
win.document.write('<BODY style="margin:0px"><div style="position:relative; width:'+x+'px; height:'+y+'px">');
win.document.write('<div style="position:abolute; left:0px; top:0px"><img src="galeria/'+obr+ '" width='+x+' height='+y+'></div>');
win.document.write('<DIV style="position:absolute; top:'+(y-30)+'px; left:0px; height:28px; width:100%; background-color:#FFFFFF; -moz-opacity:0.5; filter:Alpha(opacity=50)">');
win.document.write('<table cellpadding=0 cellspacing=0 width=100% height=100% style="margin:1px">');
win.document.write('	<tr><td height=20 width=100% valign=middle align=center><CENTER><button style="font:bold 10px Tahoma; cursor:pointer; cursor:hand" onclick="window.close()">ZAMKNIJ</button></CENTER></td></tr>');
win.document.write('</table>');
win.document.write('</DIV>');
win.document.write('</BODY></HTML>');
win.document.close()
win.focus();
}
