var showImg; 
function showmyImg(url) { 
showImg=window.open ("", "showImg","fullscreen=no"); 
showImg.document.open(); 
showImg.document.writeln("<html><body scroll=no style='margin:0'><img src="+url+" border=0 onLoad='self.resizeTo(this.width,this.height);' onClick='self.close();'></body></html>"); 
showImg.document.close(); 
showImg.moveTo(); 
showImg.focus(); 
} 

function openwin(url)
    {
	var height=screen.height/2-275;
	var width=screen.width/2-250;
      var w=window.open(url,'123',"title='23', width=500,height=375,resizable=0,toolbar=0,location=0,status=0,menubar=0,directories=0,scrollbars=no,top="+height+",left="+width);
      w.focus();
    }