var player = null;

function playerReady(thePlayer) {
	player = window.document[thePlayer.id];
}

function createPlayer(thePlayer, theFile, image, width, height) {
	var flashvars = {
		file:encodeURIComponent(theFile),
		autostart:"false",
		shuffle:"false",
		repeat:"none",
		quality: "true",
		volume: "90",
		resizing :"true",
		icons: "true",
		fullscreen: "false",
		controlbar: "bottom",
		playlist: "none",
		playlistsize: "0",
		image: image,
		type: "flv", //Set to FLV if using MX fileuploads

		backcolor: "55C6FE", // Control Bar and playlist
		frontcolor: "04094D", // Text and Icons
		lightcolor: "04094D", // Rollover
		screencolor: "000000" //Background colour of Display
	}

	var params = {
		allowfullscreen:"true",
		allowscriptaccess:"always",
		wmode:"transparent"
	}

	var attributes = {
		id:thePlayer,
		name:thePlayer
	}
	//SWFOBJECT 2.0 IS NEEDED
	swfobject.embedSWF("http://www.cephir.nl/flvplayer.swf", thePlayer, width, height, "9.0.115", false, flashvars, params, attributes);
}
