function GoOpen(img_name,W,H)
{
var sHeight = screen.height-50;
var sWidth = screen.width-50;
var sLeft = screen.availLeft;
var sTop = screen.availTop;

var Width = W+40;
var Height = H+30;
if(Width > sWidth){Width=sWidth;}
if(Height > sHeight){Height=sHeight;}

var options ="resizable=yes,scrollbars=yes,width="+Width.toString()+",height="+Height.toString()+",left=0,top=0"; 
Iwin = window.open('','Image',options);
Iwin.document.write("<html><head><title>Image</title>");
// Iwin.document.write("<link rel='stylesheet'  type='text/css' href='style.css'>");
Iwin.document.write("</head><body>");
Iwin.document.write("<img src="+img_name+" width="+W.toString()+" height="+H.toString()+" border=0></body></html>"); 
}
