// JScript File

function openPressImage(sImgName) {
    openImage("/images/" + sImgName);
}

function openKutcheriImage(sImgName) {
    openImage("/images/kutcheri/" + sImgName);
}

function openWeekendImage(sImgName) {
    openImage("/images/weekend/" + sImgName);
}

function openImage(sFileName ) {
    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 += '<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();
}

function openVideo(sVideoPath, iWidth, iHeight) {
    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 += '<body style="margin: 0px; width: ' + iWidth + 'px; height: ' + iHeight + 'px;"><table cellpadding="0" cellspacing="0"><tr><td style="width: ' + iWidth + 'px; height: ' + iHeight + 'px"><embed src="' + sVideoPath + '" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="false" width="560" height="340"></embed>&nbsp;</td></tr></table></body></html>'
    var win = window.open("", "NewsRoom", "toolbar=no, status=no, top=100, left=100, resizable=no, height=" + iHeight + ", width=" + iWidth + ", scrollbars=no");
    win.document.write(sContent);
    win.document.close();
    win.focus();
}