function CreateControlsOverlay()
{
	var overlayWidth = 900;
	var overlayHeight = 60;
	var fsX = (screen.width - overlayWidth) / 2;
	var fsY = screen.height - 80;
	var config = {
		"url":"flash/FullscreenOverlayControls.swf", 
		"id":"mn_overlay_movie", 
		"playerID":"mn_playerDiv_QMP",
		"width":1,
		"height":1,
		"flashVersion":"9",
		"fullscreenPosition": "left:auto, bottom:50px, width: " + overlayWidth + ", height: " +  overlayHeight
	};
		
	var flashObj = new MN.Flash.FlashObject(config);
	flashObj.addParam('allowScriptAccess', 'always');
	flashObj.addVariable("movieID", "mn_overlay_movie");	// Makes the flash aware of its own ID	(REQUIRED)
	flashObj.addVariable('connectionId', BridgeConnectionId); // for the control bridge
	flashObj.addVariable("initialVolume", initialVolume);	// Initial volume of the player
	flashObj.write("controls_overlay_container");
}