/*
  Application: FlashMenu for Typo3
  Autor: Attila Simon
  Copytright 2008 by Linsterstudios.com
*/

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 fmenu_FSCommand(ByVal befehl, ByVal Status)\n');
     document.write('  call fmenu_DoFSCommand(befehl, Status)\n');
     document.write('end sub\n');
     document.write('</script\> \n');
  }

  function fmenu_DoFSCommand(befehl, Status) {
    var fmObj = document.getElementById("fmenu");
	if(befehl=="open") {
	  fmObj.setAttribute("height",500);
    }
	else
	{
	  fmObj.setAttribute("height",24);
	}
  }