function deletePlayer(theWrapper, thePlaceholder, thePlayerId) { 
    swfobject.removeSWF(thePlayerId);
    var tmp=document.getElementById(theWrapper);
    if (tmp) { tmp.innerHTML = "<div id=" + thePlaceholder + "></div>"; }
}


function createPlayer(theWrapper, thePlaceholder, thePlayerId, theFile, theStart) { 
	deletePlayer(theWrapper, thePlaceholder, thePlayerId);

	var flashvars = {
		file:theFile,
		displaytitle: "true",
		autostart:theStart,
		playlist:"right",
		playlistsize:"480",
		'viral.onpause': "false",
		//'anvatoanalytics.tracker': "15705651",
		'viral.email_footer': "view more UNEP videos at http://www.unep.org/multimedia/",
		plugins:"quickkeys-1,viral-2"
	}

	var params = {
		allowfullscreen:"true", 
		allowscriptaccess:"always",
		wmode:"transparent",
		backcolor:"000000"		
	}

	var attributes = {
		id:thePlayerId,  
		name:thePlayerId
	}
	//swfobject.embedSWF("/flvPlayer/resources/player-licensed-viral.swf", thePlaceholder, "990", "350", "9.0.115", false, flashvars, params, attributes);
	swfobject.embedSWF("/flvPlayer/resources/player-licensed.swf", thePlaceholder, "980", "350", "7", false, flashvars, params, attributes);
}

function ShowNavPane(oPane)
{
    var oStr = "";
    if (oPane=='shortfilms')
    {
        document.getElementById('imgshortfilms').src = "images/Shorts_white.gif";
        document.getElementById('imgpsas').src = "images/PSA_blue.gif";
        document.getElementById('imgvnrs').src = "images/VNR_blue.gif";
		document.getElementById('imginterviews').src = "images/Interviews_blue.gif";
		createPlayer('ThematicTabs', 'PlayernList', 'player1', '/NewsCentre/videos/ZZ_Playlists/By_Gallery/Short_films_EN.xml', 'false');
    }
    if (oPane=='psas')
    {
        document.getElementById('imgshortfilms').src = "images/Shorts_blue.gif";
        document.getElementById('imgpsas').src = "images/PSA_white.gif";
        document.getElementById('imgvnrs').src = "images/VNR_blue.gif";
		document.getElementById('imginterviews').src = "images/Interviews_blue.gif";
		createPlayer('ThematicTabs', 'PlayernList', 'player1', '/NewsCentre/videos/ZZ_Playlists/By_Gallery/PSA_EN.xml', 'false');
    }
    if (oPane=='vnrs')
    {
        document.getElementById('imgshortfilms').src = "images/Shorts_blue.gif";
        document.getElementById('imgpsas').src = "images/PSA_blue.gif";
        document.getElementById('imgvnrs').src = "images/VNR_white.gif";
		document.getElementById('imginterviews').src = "images/Interviews_blue.gif";
		createPlayer('ThematicTabs', 'PlayernList', 'player1', '/NewsCentre/videos/ZZ_Playlists/By_Gallery/VNR_EN.xml', 'false');
    }
	if (oPane=='interviews')
    {
        document.getElementById('imgshortfilms').src = "images/Shorts_blue.gif";
        document.getElementById('imgpsas').src = "images/PSA_blue.gif";
        document.getElementById('imgvnrs').src = "images/VNR_blue.gif";
		document.getElementById('imginterviews').src = "images/Interviews_white.gif";
		createPlayer('ThematicTabs', 'PlayernList', 'player1', '/NewsCentre/videos/ZZ_Playlists/By_Gallery/Interviews_EN.xml', 'false');
    }
	if (oPane=='edvidmsg')
	{
        document.getElementById('imgshortfilms').src = "images/Shorts_blue.gif";
        document.getElementById('imgpsas').src = "images/PSA_blue.gif";
        document.getElementById('imgvnrs').src = "images/VNR_blue.gif";
		document.getElementById('imginterviews').src = "images/Interviews_white.gif";
		createPlayer('ThematicTabs', 'PlayernList', 'player1', '/NewsCentre/videos/ZZ_Playlists/By_Gallery/ED_Video_Messages_EN.xml', 'false');
    }
}
