var player = null;
function playerReady(thePlayer) {
	player = document.getElementById(thePlayer.id);
}


function createPlayer(thePlayer, theFile) {
	var flashvars = {
		file:theFile, 
		autostart:"true", 
		playlist:"bottom",
		playlistsize:"300",
		shuffle:"false",
		repeat:"always",
		volume:"100"
	}

	var params = {
		allowfullscreen:"true", 
		allowscriptaccess:"always"
	}

	var attributes = {
		id:thePlayer,  
		name:thePlayer
	}

	swfobject.embedSWF("/player.swf", "placeholder1", "380", "600", "9.0.115", false, flashvars, params, attributes);
	}