var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
function myFlash_DoFSCommand(command, args)
{
  var myFlashObj = InternetExplorer ? myFlash : document.myFlash;
  // Die eigentliche Funktion
    //alert (args);
	if (command=="load_cookie")
    {
      var volume_value = document.cookie+" "+args;
      window.document.myFlash.SetVariable("volume", volume_value);
    }
  // ------------------------
}
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 myFlash_FSCommand(ByVal command, ByVal args)\n');
  document.write(' call myFlash_DoFSCommand(command, args)\n');
  document.write('end sub\n');
  document.write('</SCRIPT\> \n');
}
