function createPlayer(theFile) {
    var flashvars = {
            file:theFile, 
            autostart:"false",		// true of false
            playlistsize:"300",  	// bij playlist:"right" breedte, bij playlist:"bottom" hoogte
            playlist:"none"     	// plaatsing afspeellijst: bottom, over, right of none 
    }
    var params = {
            allowfullscreen:"true", 
            allowscriptaccess:"always"
    }
    var attributes = {
            id:"player1",  
            name:"player1"
    }
    swfobject.embedSWF("player.swf", "speler", "200", "170", "9.0.115", true, flashvars, params, attributes);
 }

