/**
* (c)2008 Alexander Street Press
*/
function onFullScreen()
{
	//resize the flash movie
	var player=document.getElementById('video_player_outer');
	player.style.width="1020px";
	player.style.height="825px";
	
}

function onNormalScreen()
{
	//resize the flash movie
	var player=document.getElementById('video_player_outer');
	player.style.width="790px";
	player.style.height="825px";
}


function onAddEntityToPlaylist(entity_id)
{
	document.location='/User/Playlists/Add/'+entity_id;
}

function onAddClipToPlaylist(clip_id)
{
	document.location='/User/Playlists/Add/'+clip_id+'/videoclip/';
}

function onNewClip()
{
	updateInformationBar();
}
function onNewClip()
{
	updateInformationBar();
}


function onFullScreenTranscript()
{
$('TabbedPanels1').style.marginLeft="645px";
$('TabbedPanels1').style.width="340px";
$('TabbedPanels1').style.height="510px";
$('transcript').style.height="600px";
$('transcript').style.width="310px";
$('transcriptclips').style.height="500px";


}

function onNormalScreenTranscript()
{
$('TabbedPanels1').style.marginLeft="410px";
$('TabbedPanels1').style.width="570px";
$('TabbedPanels1').style.height="320px";
$('transcript').style.height="415px";
$('transcript').style.width="540px";
$('transcriptclips').style.height="410px";

}

function onShowClipsTrue()
{
$('TabbedPanels1').style.marginTop="230px";
$('TabbedPanels1').style.height="500px";
$('syncdiv').style.top="234px";
$('fullborder').style.height="1100px";
}

function onShowClipsFalse()
{
$('TabbedPanels1').style.marginTop="45px";
$('syncdiv').style.top="49px";
$('fullborder').style.height="800px";

}

function onAddNewClip(entity_id)
{

TabbedPanels1.showPanel('tab2');

new Ajax.Updater($('transcriptclips'), '/video/listclips/'+entity_id, {
});

}

function onEditClip(entity_id)
{

TabbedPanels1.showPanel('tab2');

new Ajax.Updater($('transcriptclips'), '/video/editclips/'+entity_id, {
});

}

function syncTranscript(status)
{
player.syncTranscript(status);
}

function onShowPermalinkWindow(clip_id)
{
	document.location='/User/Playlists/Add/'+clip_id+'/videoclip/';
}


function onClipDeleted()
{
	updateInformationBar();
}

function hidetranscriptpanel()
{
   $('TabbedPanels1').style.display="none";
   $('syncdiv').style.display="none";
   
}

function clipComplete()
{
	if($('control_div')) {
		$('control_div').fire("player:finished", event);
	}
}

function videoComplete()
{
	if($('control_div')) {
		$('control_div').fire("player:finished", event);
	}
}

function initPlayer(timecode) {
	player = null;
	player=new TranscriptVideo();
	transcriptobj = null;
	transcriptobj = new TranscriptLive('transcript');
	player.setTranscript(transcriptobj);
	player.observe("video_player_transcript:playheadUpdate",player.onVideoPlayheadUpdate.bindAsEventListener(player));
	player.init(timecode);
}

function setTrack(entityid) {
	if ($('_'+entityid)) {
   	$('_'+entityid).style.fontWeight = "bold";
    }
}
