
///////////////////////////////////////////////////////////////////////////
//Overall Flash Handler, getting and dispatching callback messages,
//received from player Flash object embedded in this page:
///////////////////////////////////////////////////////////////////////////
function headerflash_DoFSCommand(command, args) {
	//alert("command="+command+", args="+args);

	 //------------------------------------------------------//
	if (command == "windowstatus_on") {
		str = args;
		params = str.split("|");
		var str = params[0];
		window.status = str;
	}
	if (command == "windowstatus_off") {
		window.status = "";
	}

}

/*
<SCRIPT LANGUAGE="VBScript">
<!--
// Catch FS Commands in IE, and pass them to the corresponding JavaScript function.
Sub headerflash_FSCommand(ByVal command, ByVal args)
    call headerflash_DoFSCommand(command, args)
end sub
// -->
</SCRIPT>
*/
