function test(filename){ 
mywin=window.open("","","scrollbars=0"); 
mywin.document.open("text/html"); 
mywin.document.writeln("<html><head></head>"); 
mywin.document.writeln("<body style='margin:0'>"); 
mywin.document.writeln('<img src='+filename+' onClick="parent.close()"  style="cursor:hand;" onload="window.resizeTo(width+10,height+30)" title="Закрыть">'); 
mywin.document.write("</body></html>"); 
mywin.document.close(); 
} 
