function imgWindow(file,width_len,height_len){
var features = "top=20, left=20, width=100 , height=100, scrollbars=yes,status=no,toolbar=no,menubar=no,resizable=yes";
myWin = window.open('','foto',features);
//alert(file);
myWin.focus();
w=width_len; 
w=w+10+20;
h=height_len;
if (h>540) h=540;
h=h+34+17;
myWin.resizeTo(w,h);
myWin.document.write("<html><head><title></title>");
myWin.document.write("<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">");
myWin.document.write("</head><body bgcolor=#FFFFFF leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 rightmargin=0 bottommargin=0>");
myWin.document.write("<table border=0 cellspacing=0 cellpadding=0 align=center width=\"100%\"><tr><td align=center><img src="+file+" alt= width="+width_len+" height="+height_len+" border=0");
myWin.document.write("</td></td></table><body></html>");
myWin.document.close();
}
