	function FlashBridge( sSWF )
	{
		if ( typeof sSWF != "undefined" )
			this.init( sSWF );
			
			
	};
	FlashBridge.prototype.init = function( sSWF )
	{
		this._flash     = document[ sSWF ] || window[ sSWF ] || false;
		this._available = false;
		this._file      = new Object();
		
		window[ ( this._self = sSWF + "Object" ) ] = this;
	};
	FlashBridge.prototype.participate = function()
	{
		if ( typeof this._flash.participate != "undefined" )
			return this._flash.participate();
		else
			alert( "Uw browser ondersteunt geen Flash of Flash-ondersteuning is uitgeschakeld." );
	};
