// ************************************************************************************************
// *** Player Type enumeration
// ************************************************************************************************

function PlayerType()
{
	this.WindowsMedia = 1;
	this.Real = 2;
	this.Quicktime = 3;
	this.Flash = 4;
	this.JWPlayer = 5;
}

