 flashinstalled = 0;
 if((navigator.appName == "Netscape")||(navigator.appName == "Opera"))
  {
    for(i=0;i<navigator.plugins.length;i++)
     {
       if(navigator.plugins[i].description.indexOf("Flash ") >= 0)
        {
         flashinstalled = 2;
         break;
        }
       else
        {
          flashinstalled = 1;
        }
     }
  }
else
  {
    document.write('<SCRIPT LANGUAGE="VBScript">\n');
    document.write('on error resume next\n');
    document.write('For i = 2 to 10\n');
    document.write('If Not(IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & i))) Then\n');
    document.write('Else\n');
    document.write('flashinstalled = 2\n');
    document.write('flashversion = i\n');
    document.write('End If\n');
    document.write('Next\n');
    document.write('If flashinstalled = 0 Then\n');
    document.write('flashinstalled = 1\n');
    document.write('End If\n');
    document.write('</SCRIPT>\n');
  }

if(flashinstalled == 2)
 {
    document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
    document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ');
    document.write(' ID=PROFM WIDTH="750" HEIGHT="300">');
    document.write('<PARAM NAME=movie VALUE="/swf/ibiza.swf"><PARAM NAME=quality VALUE=autohigh><PARAM NAME=bgcolor VALUE=#FFFFFF>');
    document.write('<EMBED src="/swf/ibiza.swf" quality=autohigh');
    document.write(' swLiveConnect=TRUE WIDTH="750" HEIGHT="300" bgcolor=#FFFFFF');
    document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
    document.write('</EMBED>');
    document.write('</OBJECT>');
 }
else
 {
    document.write('<img src=\"/images/startseite.jpg\" width=\"750\" height=\"300\" border=\"0\" alt=\"\" title=\"\">');
 }


