function display_image(imagename, wid, hei)
{
	myWindow = window.open("","","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width="+wid+",height="+hei);
	myWindow.document.open();
	myWindow.document.write("<html><head><title>Narodni muzej Pozarevac</title></head>");
	myWindow.document.write("<body bgcolor=\"White\" leftmargin=0 topmargin=0  marginwidth=0 marginheight=0 onblur=\"self.close();\" onmousedown=\"self.close();\" onload=\"self.focus();\">");
	myWindow.document.write("<img  src = '" + imagename + "'>");
	myWindow.document.write("</body></html>");
	myWindow.document.close();
}
