function foto(picture_big) {
	NewWindow=window.open('', '','width='+850+',height='+650+',toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=yes,resizable=yes,fullscreen=no');
	NewWindow.document.open();

	NewWindow.document.writeln("<html>\n<head><title>Ars Regia</title>\n</head>");
	NewWindow.document.writeln("<body leftmargin=0 topmargin=0>");
	NewWindow.document.writeln("<table width=100% height=100%>");
	NewWindow.document.writeln("<tr><td valign=center align=center>\n<a href=\"javascript:window.close();\"><img src="+picture_big+" border=0></a></td></tr>");
	NewWindow.document.writeln("<tr><td align=center><a href=\"javascript:window.close();\"  style=\"font-family:Tahoma, sans-serif; text-decoration: none; font-size:8pt; color: #000;\"><b>ZAMKNIJ OKNO</b></a>\n</td></tr>");
	NewWindow.document.writeln("</table>");
	NewWindow.document.writeln("</body>\n</HTML>\n");
	NewWindow.document.close();
	NewWindow.focus();
	return false;
}