function createPlayer(thePlaceholder, thePlayerId, theFile, theWidth, theHeight, thePlaylistSize) {
var flashvars = {
file:theFile,
autostart:'false',
stretching:'none',
backcolor:'0xeeeedd',
frontcolor:'0x445555',
lightcolor:'0x445555',
playlist:'bottom',
playlistsize:thePlaylistSize,
}
var params = {
allowfullscreen:"true", 
allowscriptaccess:"always"
}
var attributes = {
id:thePlayerId,  
name:thePlayerId
}
swfobject.embedSWF('/include/mediaplayer/4.3/player.swf', thePlaceholder, theWidth, theHeight, "9.0.115", false, flashvars, params, attributes);
}