function PicturesPopup(URL,b,a) 
{
// http://www.mindpalette.com/scripts/openpopup2/index.php
newwindow=window.open('','name','height='+a+',width='+b+',left=170,top=120,menubar=false,resizeable=false,toolbar=false,');
var ob = newwindow.document;
	ob.write('<html><head>');
	ob.write('<style type="text/css">body {margin: 0px;}</style>');
	ob.write('</head><body>');
	ob.write('<div align="center" onClick="javascript:self.close()"><img src="' + URL + '"  alt="Chata pri moste" border="0"></div>');
	ob.write('</body></html>');
	ob.close();
}

