var player = null;
function playerReady(thePlayer) {
	player = document.getElementById(thePlayer.id);
}

function createPlayer(thePlayer, theFile) {
	var flashvars = {
		file:theFile, 
		playlist:"right",
		playlistsize:"480",
        backcolor:"#FFFFFF",
        frontcolor:"#000000",
        lightcolor:"#0000C0",
        screencolor:"#FFFFFF",
        bufferlength:"5",
        shuffle:"true",
        linktarget:"_self",
        skin:"/galleries/flash/videoskin.swf"
	}

	var params = {
		allowfullscreen:"true", 
		allowscriptaccess:"always",
		wmode:"transparent"
	}

	var attributes = {
		id:thePlayer,  
		name:thePlayer
	}

	swfobject.embedSWF("/galleries/flash/video.swf", "player", "880", "325", "9.0.115", "/galleries/flash/expressInstall.swf", flashvars, params, attributes);
}
