function imgPopup(img,wid, hi){

 features = 
    "toolbar=no,location=no,directories=no,status=no,menubar=no," +
    "scrollbars=no,resizable=no,width=" + wid + ",height=" + hi;
 dlg = window.open ("","ModabelleViewEnlarge",features);
 dlg.document.write("<html><head><title>Modabelle ViewEnlarge</title></head>");
 dlg.document.write("<body bgcolor=white leftmargin=10 topmargin=10 rightmargin=10 bottommargin=10><center>");
 dlg.document.write("<table width=100% height=100% align=center>");
 dlg.document.write("<tr><td align=center valign=middle><img src='http://yst.modabelle.com/images/logo.jpg'></td></tr>");
 dlg.document.write("<tr><td align=center width=100% style='border:3px solid #C64482;'><img src=" + img + ">");
 dlg.document.write("</td></tr><tr><td>&nbsp;</td></tr>");
 dlg.document.write("<tr><td align=center valign=middle>");
 dlg.document.write("<a href=# onClick=window.close();>");
 dlg.document.write("<img src='http://yst.modabelle.com/images/close.jpg' border=0></a>");
 dlg.document.write("</td></tr>");
 dlg.document.write("</table></center></body></html>");
 dlg.document.close();
}