function ImgLink(name,w,h) { 
 newimg=window.open("","Image","Width="+w+", Height="+h+", Toolbar=0, Status=0, Menubar=0, Scrollbars=0, Resizable=0");
 newimg.document.open();
 newimg.document.write('<html><body TOPMARGIN=0 LEFTMARGIN=0><img src='+name+' width='+w+' height='+h+' onclick=window.close(); style="cursor:hand" alt="Закрыть окно"></body>')
 newimg.document.close();
}
