function playVideo(releaseUrl, holderId, trackViewFunc)
{
	_isVideoPlaying = true;
	_holderId = holderId;
	_releaseUrl = releaseUrl;
	
	if (trackViewFunc != undefined)
	{
		//* this tracks view within polopoly. only called in Dynamic Lead, not on individual video article as built-in functionality will track the view
		eval("callTrackView_" + trackViewFunc + "()");
	}

	$("#tpPlayer").show();
	setTimeout("showWithDelay()", 500);
//	tpController.pause(false);
	
	syncTpPlayerPosition()
	//_syncPositionTimer = setInterval("syncTpPlayerPosition()", 500);
}

function showWithDelay()
{
	tpController.setReleaseURL(_releaseUrl); 
	tpController.clickPlayButton();
}

function syncTpPlayerPosition()
{
	if ($("#" + _holderId).length > 0 )
	{
		$("#tpPlayer").css("top", $("#" + _holderId).offset().top);
		$("#tpPlayer").css("left", $("#" + _holderId).offset().left);
	}
}