/**
 * FlashTag Adapter
 * @author Jeff Clarke
 * @version 1.0, April 11, 2007
 * 
 * Functionality to adapt from the FlashTag class hardcoded inside of SWF Publisher code
 * to exd's new SWF Tag.  Since SWFTag includes all of the methods defined by FlashTag,
 * this allows the instantiation of a FlashTag to actually return a SWFTag object instead.
 *
 * Also defines a bogus FlashTag object, which is an empty bogus object -- since Flash 8 
 * makes FlashProxy obsolete.
 *
 * Requires: Flash 8 swf, swf_tag_minimal:
 * http://cdn.channel.aol.com/_media/channels/swftag_v1_6_1_minimal.js
 */

function FlashTag(swf, width, height, version){
	return (new SWFTag('adapter', swf, String(width), String(height), SWFTag.V8));
}

function FlashProxy(a, b){};
