function deletePlayer(theWrapper, thePlaceholder, thePlayerId) { 
		swfobject.removeSWF(thePlayerId);
		var tmp=document.getElementById(theWrapper);
		if (tmp) { tmp.innerHTML = "<div id=" + thePlaceholder + "></div>"; }
}

function createPlayer(thePlaceholder, thePlayerId, theFile, willAutostart) {
		var flashvars = {
				file:theFile, 
				autostart:willAutostart,
				image: "/player/default_w.jpg",
				logo: "/player/logo.png"
		}
		var params = {
				allowfullscreen:"true", 
				allowscriptaccess:"always"
		}
		var attributes = {
				id:thePlayerId,  
				name:thePlayerId
		}
		swfobject.embedSWF("/player/player.swf", thePlaceholder, "640", "340", "9.0.115", false, flashvars, params, attributes);
}

function initPlayer(theFile, willAutostart) { 
		deletePlayer('wrapper01', 'container01', 'player01'); 
		createPlayer('container01', 'player01', theFile, willAutostart);
}

initPlayer('/assets/videos/NLC_Promo-1248.flv', 'false');
