var player = null;
function playerReady(thePlayer) {
	player = window.document[thePlayer.id];
}


function createPlayer() {
	var flashvars = {
		file:"images/mediafill.jpg", 
		autostart:"true",
		skin:"flash/stijl.swf",
		backcolor:"f2eed9",
		frontcolor:"231f20",
		lightcolor:"927c46"
	}

	var params = {
		allowfullscreen:"true", 
		allowscriptaccess:"always",
		wmode:"transparent"
	}

	var attributes = {
		id:"player1",  
		name:"player1"
	}

	swfobject.embedSWF("flash/player.swf", "placeholder1", "350", "196", "9.0.115", false, flashvars, params, attributes);
}