//Axinom GmbH - 2008

Player = function(pMediumSource, pTitle, pText)
{
    this.AutoPlay = false;
    this.AutoDownload = false;
    this.Info = new Info(pTitle, pText);
    this.Medium = new Medium(pMediumSource);
    this.FixedImage = new FixedImage();
    
}
Medium = function(pMediumSource)
{
    this.Source = pMediumSource;
    this.StartPosition = 0.0;
    this.Stretch = "Uniform";
    this.Type = "video"; /* video; audio */
}
FixedImage = function()
{
    this.Source = null;
    this.Stretch = "Uniform";
}
Info = function(pTitle, pText)
{
    this.Title = pTitle;
    this.Text = pText;
}
