function createVideoPlayer(containerId, width, height, videoUrl, imageUrl) {
	var flashvars = {
		file :videoUrl,
		//logo :"/flash/player/logo.png",
		image :imageUrl
  }
	var params = {
		allowfullscreen :"true",
		allowscriptaccess :"always",
		wmode :"transparent" 
	}
	var attributes = {
		id :containerId,
		name :containerId
	}
	swfobject.embedSWF("/flash/player/player.swf", containerId, width, height, "9.0.115",
			false, flashvars, params, attributes);
}

