// JScript File

function openImage(sImgName) {
    var sFileName = "/images/press/" + sImgName;
    var sContent = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';
    sContent += '<html xmlns="http://www.w3.org/1999/xhtml">';
    sContent += '<head><title>News Room</title>';
    //sContent += '<style>html,body{overflow:auto;margin:0px}</style>';
    sContent += '<script type="text/javascript" src="/winresize.js"></script></head>';
    sContent += '<body onload="javascript:ResizeMe();" style="margin: 0px;"><img id="imgHolder" src="' + sFileName + '" alt="" /></body></html>'
    var win = window.open("", "NewsRoom", "toolbar=no, status=no, top=100, left=100, resizable=0, height=200, width=200, scrollbars=yes");
    win.document.write(sContent);
    win.document.close();
    win.focus();
}
