function createPlayer(oPlaceholder, oPlayerId, oVideo, oBufferlength,oAutostart, oImage, oWidth, oHeight ) 
{
var flashvars = {
	file:oVideo,
	autostart:oAutostart,
	image:oImage
}
var params = {
	allowfullscreen:"true",
	allowscriptaccess:"always",
	wmode: "transparent" 
 }
var attributes = {
	id:oPlayerId,
	name:oPlayerId
}
swfobject.embedSWF("player.swf", oPlaceholder, oWidth, oHeight, "9.0.115", false, flashvars, params, attributes);
}

