   var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
   // Handle all the FSCommand messages in a Flash movie.
   function structuredsystems_DoFSCommand(command, args)
   {
	var structuredsystemsObj = isInternetExplorer ? document.all.structuredsystems : document.structuredsystems;
   if(args=="home") window.location="http://www.structured-systems.net/";
   window.location="http://www.structured-systems.net/"+command+"/"+args+"/default.aspx";
   }
   // Hook for Internet Explorer.
   if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1)
   {
	document.write('<script language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub structuredsystems_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call structuredsystems_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
   }
