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