function vedi_foto(ifile,ix,iy,ititle) { 
var im;
im = window.open("","imageviewer","width="+ix+",height="+iy+",menubar=no,toolbar=no");
im.document.open();
im.document.write("<html><head><title>"+ititle+"</title>");
im.document.write("</head><body>");
im.document.write('<div style="position:absolute;width:'+ix+'px;height:'+iy+'px;left:0px;top:0px">');
im.document.write("<img src="+ifile+"></div></body></html>");
im.document.close();
}