function myMovie_DoFSCommand(command, args)
	{
	if (command == 'quit')
		{window.close();}
	}

if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1)
	{
	document.write('<script type="text/vbscript"\> \n');
	document.write('on error resume next \n');
	document.write('Sub myMovie_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call myMovie_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</script\> \n');
	}
