﻿function TwlVideo()
{

	this.IdVideo = "";
	this.TwlCurContent = "TwlDigg";
	this.TwlCurClassName = "digg";
	this.player;
	
	this.DisplayTwlContent = function (aContent,aClass,aObj)
	{
		document.getElementById("TwlLoginFixed").style.display = "none";
		document.getElementById(myTwlVideo.TwlCurContent).style.display = "none";
		document.getElementById(myTwlVideo.TwlCurContent + "Link").className = myTwlVideo.TwlCurClassName;
		document.getElementById(aContent).style.display = "";
		aObj.className = aClass + " selected";
		myTwlVideo.TwlCurContent = aContent;
		myTwlVideo.TwlCurClassName = aClass;
	}
	
	this.ShareOnMyspace = function()
	{
		document.getElementById("twl_myspacepostto").submit();
	}
	
	this.stopTracker = function(obj) 
	{ 
		
		if (document.getElementById("TwlPostroll"))
		{
			 document.getElementById("TwlPlayer").innerHTML = document.getElementById("TwlPostroll").innerHTML;
		}

	}
	
	this.replayVideo = function()
	{
		TwlPlayVideo();
	}

}

var myTwlVideo = new TwlVideo();



function playerReady(obj) 
{
	myTwlVideo.player = document.getElementById(obj['id']);
	myTwlVideo.player.addControllerListener("STOP","myTwlVideo.stopTracker");
}





