/** * (c) 2008, Wacko-Wacko! * @author daclip */function WFlashVideoObject(src) {	var self = null;	var source = null;		this.getSelf = function() {		return self;	}		var create_self = function() {		var so = new SWFObject("/js/player_flv_maxi.swf", null, "480", "360", ++total_flash_video, "#000000");		so.addParam("name", "movie");		so.addParam("FlashVars", "configxml="+src);		so.addParam("wmode", "opaque");				var obj = document.createElement("div");		so.write(obj);		return obj;	}	var init = function() {		self = create_self();		return self;	}	init();		// End of class}
