	function createPlayer(thePlaceholder, thePlayerId, theFile, theAutostart, width, height) {
        var flashvars = {
                file:theFile, 
                autostart:theAutostart,
                playlistsize:"200",
                playlist:"right"
        }
        var params = {
                allowfullscreen:"true", 
                allowscriptaccess:"always"
        }
        var attributes = {
                id:thePlayerId,  
                name:thePlayerId
        }
        swfobject.embedSWF("player.swf", thePlaceholder, width, height, "9.0.115", false, flashvars, params, attributes);

    }

