function createPlayer(theFile,autoplay,repeat) {
    
	var flashvars = {
            file:theFile, 
            autostart:autoplay,
            playlist:"over",
            repeat:repeat,
            icons:"true",
            backcolor: "000000",
			frontcolor: "8f8f8f",
			lightcolor: "b83a44",
			screencolor: "000000"
    }
    
    var params = {
            allowfullscreen:"true", 
            allowscriptaccess:"always"
    }
    
    var attributes = {
            id:"player1",  
            name:"player1"
    }
    
    swfobject.embedSWF("/js/player.swf", "playerBody", "486", "273", "9.0.115", false, flashvars, params, attributes);
}
$(document).ready(function(){
	var XMLPlayList = $('#XMLPlayList').attr('value');
	var Autoplay = $('#Autoplay').attr('value');
	var Repeat = $('#Repeat').attr('value');
	createPlayer(XMLPlayList,Autoplay,Repeat);
})