﻿function TwlListingVideo()
{

	this.IdVideo;
	this.ax_request;
	

	this.DisplayTags = function (AbsPageTag,OrderTag)
	{
		var url = "/ax/tags.aspx?ABS_PAGE_TAG=" + AbsPageTag + "&t=" + String(Math.floor((new Date()).getTime() / 1000)) + "&ORIGINAL_URL=" + myTwl.original_url_encoded + "&TAG=" + myTwl.tag + "&TAG_ORDER=" + OrderTag;
		myTwlListingVideo.ax_request = GetXmlHttpObject(CallBackDisplayTags);
		SendXmlHttpRequest(myTwlListingVideo.ax_request, url ); 
	}


	function CallBackDisplayTags() 
	{ 
		try
		{
			if (myTwlListingVideo.ax_request.readyState == 4 || 
				myTwlListingVideo.ax_request.readyState == 'complete')
			{
	            
				var ax_response = myTwlListingVideo.ax_request.responseText; 
				if (ax_response.length > 0)
				{
					document.getElementById("TwlTagsContent").innerHTML = ax_response; 
				} 
			}
		}
		catch(e){}
	}
}

var myTwlListingVideo = new TwlListingVideo();



