var videoPlayer = function() {

	return {

		embed: function( replaceElemId, width, height, imageUrl, videoUrl, infoText ) {
			var flashvars = { imageUrl: imageUrl, videoUrl: videoUrl, infoText: infoText };
			var params = { menu: "false", scale: "scale", allowFullscreen: "true", allowScriptAccess: "always", bgcolor: "#000000" };
			var attributes = {};
			swfobject.embedSWF( "/flash/VideoPlayer.swf", replaceElemId, width, height, "9.0.0", "expressInstall.swf", flashvars, params, attributes );
		}

	};

}();

