function wopen(url,w,h){ 
cWidth=document.body.clientWidth;
cHeight=document.body.clientHeight;
scrolledDown = document.body.parentNode.scrollTop;
l=(cWidth-w)/2;
t=(cHeight-h)/2;

eval('opened=window.open("","none","top="+t+", left="+l+", width="+w+", height="+h+", resizable=0","replace=yes")');  
opened.document.open();  
opened.document.write('<body leftmargin=0 topmargin=0><img src="'+url+'"></body>');  
opened.document.close();  
}  
