	
function openImg(URL,WI,HI) {

if (typeof(ImgWin) != "undefined") ImgWin.close();

 ImgWin=window.open('','Flash', 'height='+HI+',width='+WI+',directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no');
d1="<html><head><title>Image</title></head><body>";
d2="<div style='position: absolute; left: 0px; top: 0px; z-index: 1000;'><a href='javascript:window.close();'><img src='dot.gif' width="+WI+" height="+HI+" border=0></a></div>";
d3="<div style='position: absolute; left: 0px; top: 0px; z-index: 10;'><img src='"+URL+"'>"; 
d4="</div></body></html>";
ImgWin.document.write (d1+d2+d3+d4);

  }
 
