function onVideoPlayerPlay(videoId) {
	//alert("onVideoPlayerPlay");
	var jsonText = TURNERPLAYER.getVideoEntry(videoId);
	var videoObj = eval( "(" + jsonText + ")" );
	document.getElementById('tvpHeadline').innerHTML = videoObj.headline;
	document.getElementById('videoplayer_pageTitle').innerHTML = videoObj.headline;
	var thisDescription = videoObj.description;
	if(videoObj.description == '')
	{
		thisDescription = "Profile";
	}
	document.getElementById('tvpBlurb').innerHTML = thisDescription;
	document.getElementById('tvpTrt').innerHTML = videoObj.duration;
	document.getElementById('tvpPubDate').innerHTML = videoObj.dateCreated;
}
	
var inQ = 0;
function onVideoPlayerBegin(videoId, json) {
	//alert("onVideoPlayerBegin: " + videoId);
	var model_list_length = model_tvp_playlist.length;
	for (var m=0; m<model_list_length; m++)
	{
		if (TVP_currentId != model_tvp_playlist[m])
		{
			TURNERPLAYER.queue(model_tvp_playlist[m]);
			inQ++;
		}
	}
	for (var i=0; i<TVP_playlist.length; i++) {
		if (TVP_currentId != TVP_playlist[i] && inQ <= 15) {
			TURNERPLAYER.queue(TVP_playlist[i]);
			inQ++;
		}
	}
}