﻿// JScript File

function NewImageWindowWithCloseButton(imagepath)
{
    var winWidth = 870;
    var winHeight = 700;
    var leftPos = 50;
    var topPos = 50;
    
    if (screen)
    {
        leftPos = (screen.width - winWidth) / 2;
        topPos = ((screen.height - winHeight) / 2) - 50;
    }

    var win = window.open('', '', 'width='+winWidth+',height='+winHeight+',left='+leftPos+',top='+topPos+',location=no,status=no,toolbar=no,menubar=no,directories=no,scrollbars=yes');
    win.document.write("<html><head><title>Extreme Stripers Photo Album Image</title></head>");
    win.document.write('<body style="background-color: black"><table width="100%" height="100%"><tr><td align="center">');
    win.document.write('<img style="font-size:large" alt="" src="' + imagepath + '" />');
    win.document.write('<br /><br />');
    win.document.write('<input type="button" value="Close" onClick="window.close()">');
    win.document.write('</td></tr></table></body></html>');
    win.document.close();
}

function NewVideoWindowWithCloseButton(videopath)
{
    var agt=navigator.userAgent.toLowerCase();
    var winWidth = 820;
    var winHeight = 700;
    var leftPos = 50;
    var topPos = 50;
    
    if (screen)
    {
        leftPos = (screen.width - winWidth) / 2;
        topPos = ((screen.height - winHeight) / 2) - 50;
    }
    
    var win = window.open('', '', 'width='+winWidth+',height='+winHeight+',left='+leftPos+',top='+topPos+',location=no,status=no,toolbar=no,menubar=no,directories=no,scrollbars=no');
    win.document.write("<html><head><title>Extreme Stripers Video</title></head>");
    win.document.write('<body style="background-color: black"><table width="100%" height="100%"><tr><td align="center">');

    if (agt.indexOf("msie") == -1) 
        win.document.write('<object id="Object1" width="800" height="600" type="video/x-ms-wmv"><param name="URL" value="' + videopath + '" /><param name="SendPlayStateChangeEvents" value="True" /><param name="AutoStart" value="true" /><param name="uiMode" value="full" /><param name="PlayCount" value="1" /><param name="volume" value="100" /><param name="loop" value="false" /></object>');    
    else    
        win.document.write('<object id="video" width="800" height="600" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" type="application/x-oleobject"><param name="URL" value="'+videopath+'" /><param name="SendPlayStateChangeEvents" value="True" /><param name="AutoStart" value="true" /><param name="uiMode" value="full" /><param name="PlayCount" value="1" /><param name="volume" value="100" /><param name="loop" value="false" /></object>');
        
    win.document.write('<br /><br />');
    win.document.write('<input type="button" value="Close" onClick="window.close()">');
    win.document.write('</td></tr></table></body></html>');
    win.document.close();
}

