/*
SPEVision Web Player Release 2.6 - Variables initialization script ("variables.js")
Author: Enrico Griso
Company: SPEsperia
Version: 2.6
Date of release: 18/08/2003
*/

/*
This file contains the code needed to initialize all the global variables used in the application.
*/

//"nPlayerMajVerNumber" stores the major version Number of the Media Player.
var nPlayerMajVerNumber;

//"oXmlDoc" is the object used to parse all .xml configuration files.
var oXmlDoc;

//"oWvxDoc" is the object used to parse the playlist.
var oWvxDoc;

//"nTotalTime"stores the lesson duration.
var nTotalTime;

//"bAppStarted" stores the status of initialization of the application after the preloading of content files.
var bAppStarted;
bAppStarted = false;

//"aSlides" is the collection of the slides used in the application
var aSlides = new Array();

//"sAudioONPic" store the file name of the graphic file used to show that the Microsoft Media Player can be set in "mute false status".
var sAudioONPic;
sAudioONPic = "images/AudioON.gif";

//"sAudioONOverPic" store the file name of the graphic file used to show that the option "mute false status" for the Microsoft Media Player is selected.
var sAudioONOverPic;
sAudioONOverPic = "images/AudioONOver.gif";

//"sAudioOFFPic" store the file name of the graphic file used to show that the Microsoft Media Player can be set in "mute true status".
var sAudioOFFPic;
sAudioOFFPic = "images/AudioOFF.gif";

//"sAudioOFFOverPic" store the file name of the graphic file used to show that the option "mute true status" for the Microsoft Media Player is selected.
var sAudioOFFOverPic;
sAudioOFFOverPic = "images/AudioOFFOver.gif";