// Copyright 04 Oct July 2002, Cavalry Outpost Publications.
// This subroutine loads and displays a PopUp Window that displays a
// message or graphic link to a WebSite Page location (URL) of interest.

// *********************************************************************
// **********  Program Name = T_HC-Video-010.js Rev 12-01-11  **********
// *********************************************************************

// 1.0 DEFINE VIDEO MODULE
// 1.1 Define Screen Coordinates

var ScrollbarWidth = "0";
var VideoWinFrameWidth = "6";
var xMax = screen.availWidth;

// 1.2 Define Screen and VideoWinParameters

var VideoWin = "";
var VideoWinWidth = 310, VideoWinHeight = 215;
var xOffset = ((xMax - ScrollbarWidth) - (VideoWinWidth + 2*VideoWinFrameWidth))/2;
var VideoWinParameters = 'width='+VideoWinWidth+',height='+VideoWinHeight+',screenX='+xOffset+',left='+xOffset+',screenY=0,top=0';

// 1.3 Open Video Window

function Turn_On_Video() {
    Video_On = window.open('http://www.first-team.us/milmusic/cavmusic/cavtunes/tune_010/T_HC-Video-010.html', '', VideoWinParameters);
}

// 0.0 LOAD VIDEO MODULE
// Turn_On_Video();

// 2.0 TURN OFF VIDEO MODULE

function Turn_Off_Video() {
        var sLocType
        if (Video_On) {
                if (!Video_On.closed) {
                        sLocType = typeof Video_On.location;
                        if (sLocType == 'object') {
                                Video_On.close();
                        }
                }
        }
}

