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>www.drmno.com</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("<div style='position:absolute; left:10; top:50; width:120; height:44'>");
	myWindow.document.write("<img id=imagewait src='images/slika_se_ucitava.gif' border='0'>");
	myWindow.document.write("</div>");
	myWindow.document.write("<div style='position:absolute; left:0; top:0; width:"+wid+"; height:"+hei+"'>");
	myWindow.document.write("<img id=image2 src='"+imagename+"' alt='Klik mi&scaron;em zatvara prozor' border='0'>");
	myWindow.document.write("</div>");
//	myWindow.document.write("<div style='position:absolute; left:0; top:0; width:50; height:50'>");
//	myWindow.document.write("<img src='images/logo_small.gif' border='0'>");
//	myWindow.document.write("</div>");
	myWindow.document.write("</body></html>");
	myWindow.document.close();
}
