if (typeof SSB == "undefined") var SSB = new Object();
if (typeof SSB.flag == "undefined") SSB.flag = new Object();

SSB.setup_6200 = function ()
{
	console.log("SSB.setup_6200()");
	
	SSB.flag.emit_flag();
}

SSB.flag.emit_flag = function ()
{
	console.log("SSB.flag.emit_flag()");

	// http://code.google.com/p/swfobject/
	// note: swfobject 2.0 _replaces_ the element specified, whereas swfobject 1.5 replaces the _contents_ of the element specified

	if (swfobject.hasFlashPlayerVersion("6.0.65")) {
		var expressInstall = "_swf/expressInstall.swf";
		var flashvars = { };
		var params = { menu: "false", scale: "noscale" };
		var attributes =  { };
		swfobject.embedSWF("swf/flag/interactive_flag.swf", "swf", "880", "500", "9", expressInstall, flashvars, params, attributes);
	}
}

