var showImg; 
function showmyImg(url) { 
showImg=window.open ("", "showImg","fullscreen=no"); 
showImg.document.open(); 
showImg.document.writeln("<html><body scroll=no style='margin:25; background-color:#000000'><center><img src="+url+" border=0 onLoad='self.resizeTo(this.width,this.height);' onClick='self.close();'></center></body></html>"); 
showImg.document.close(); 
showImg.moveTo(); 
showImg.focus(); 
} 