function createPlayer(videoURL,posterURL,width,height,mediaurl) {
    var flashvars = {
            file:videoURL,
            image:posterURL,
            autostart:"false",
            type:"video"
    }
    var params = {
            allowfullscreen:"true", 
            allowscriptaccess:"always"
    }
    var attributes = {
            id:"player1",  
            name:"player1"
    }
	swfobject.embedSWF(mediaurl + "static/flash/player.swf", 
                        "player",
                        width, 
                        height, 
                        "9.0.260", 
                        false, 
                        flashvars, params, attributes);
}

