	// These functions are caught by the feeder object of the player.
	// THOMAS: SENDEVENT PLAY PAUSE EINGEFUEGT DAMIT ER GLEICH SPIELT
	function loadFile(obj) {
		mpl.sendEvent("LOAD", obj);
		mpl.sendEvent("LOAD", "http://www.backlab.at/wp-content/archive/skinny.mp3");
		mpl.sendEvent('playpause'); 
	};
	
	player.sendEvent("PLAY","true");
	
	function createPlayer() {
            var flashvars = {
                    autostart:"true",

            }
            var params = {
                    allowfullscreen:"true", 
                    allowscriptaccess:"always",
					overstretch:"true",				
					frontcolor:"0xFFFFFF",					
					backcolor:"0x000000",
					lightcolor:"0xFECC00",
					enablejs:"true"		
            }
            var attributes = {
                    id:"player1",
                    name:"player1"
            }
            swfobject.embedSWF("player.swf", "placeholder1", "320", "196", "9.0.115", false, flashvars, params, attributes);
        }
