<!-- Begin
function ScreenShot(file,x,y,title) { 
var win;
var w;
var h;
var NS = (document.layers) ? 1 : 0;
win = window.open("","imageviewer","width="+x+",height="+y+",menubar=no,toolbar=no");
if (NS) {
w = win.innerWidth;
h = win.innerHeight;
} else {
w = win.document.body.clientWidth;
h = win.document.body.clientHeight;
}
if(w!=x || h!=y) {
win.close();
setTimeout("ViewImage('"+file+"',"+x+","+y+",'"+title+"')", 250);
return;
}
win.document.open();
win.document.write("<html><head><title>"+title+"</title>");
win.document.write("</head><body>");
win.document.write('<div style="position:absolute;width:'+x+'px;height:'+y+'px;left:0px;top:0px">');
win.document.write("<img src="+file+"></div></body></html>");
win.document.close();
}
//  End -->

