// ************************************************************************************************
// *** Media Type enumeration
// ************************************************************************************************

function MediaType()
{
	this.WindowsMedia = 1;
	this.Real = 2;
	this.Quicktime = 3;
	this.Flash = 4;
}


