var FloodlightTag = Class.create();
FloodlightTag.prototype = {

initialize : function( tagUrl ) {

	var axel = Math.random() + '';
	var a = axel * 10000000000000;
	var fullTagUrl = tagUrl + a + '?';
	var container = this.getContainer();

	var iFrame = document.createElement( 'iframe' );
	void( iFrame.id = 'DCLK_FLIframe_' + Math.floor( Math.random() * 10000 ) );
	void( iFrame.src = fullTagUrl );
	void( container.appendChild( iFrame ) );

}, // End initialize().

getContainer : function() {

	var container = $( 'DCLK_FLDiv' );

	if ( container == null ) {
		container = document.body.appendChild( document.createElement( 'div' ) );
		void( container.id = 'DCLK_FLDiv' );
		void( container.style.display = 'none' );
	} // End if.

	return container;

} // End getContainer().

} // End class FloodlightTag.
