/*
	$Workfile: FlashSupport.js $
	$Date: 8/06/00 2:35a $
	$Modtime: 8/06/00 2:35a $
	$Revision: 2 $

	Copyright © 1998-2000 Shirt And Shoes Required, LLC
	All Rights Reserved

	Shirt And Shoes Required, LLC
	9 Desbrosses Street, 7th Floor
	New York, NY 10013-1701
	United States of America

	t: +1 (212) 334-9964
	f: +1 (212) 208-2976
	http://sasr.com/
	info@sasr.com

	The software and information contained herein are proprietary to, and
	comprise valuable trade secrets of, Shirt And Shoes Required, LLC, which
	intends to preserve as trade secrets such software and information. The
	content of this file may not be disclosed to third parties, copied or
	duplicated in any form, in whole or in part, without the prior written
	permission of Shirt And Shoes Required, LLC.
*/



/*
	Event handler for FSCommand.
	
	This particular implementation interprets opcodes.  The previous, more
	general version was utilizing window.eval in order to allow any JScript
	commands to be executed from within Flash did not work on the Netscape
	platform.
*/

function Flash_DoFSCommand(command, args)
{
	if( command == "navigate")
	{
		window.location.pathname = args;
	}
	else
	{
		// Ignore unknown opcodes.
	}
}
