
	//var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

	// Handle all the the FSCommand messages in a Flash movie
	function objFlash_DoFSCommand(command, args) 
		{
	  //var objFlashObj = InternetExplorer ? objFlash : document.objFlash;
		
		//args = String(args);
		
		command = String(command);
		
		if (command == "wc") { 
			
			document.close();
			window.close();
		}
	}
		
		