<!--
var flash2Installed = false;
var flash3Installed = false;
var flash4Installed = false;
var flash5Installed = false;
var flash6Installed = false;
var maxVersion = 6;			
var actualVersion = 0;

var isIE = 	(navigator.appVersion.indexOf("MSIE") != -1) ? true : false;	
var isWin = 	(navigator.appVersion.indexOf("Windows") != -1) ? true : false; 

if (isIE && isWin)
{ 
	document.write("<SCR" + "IPT LANGUAGE=\"VBScript\">\n");
	document.write("On Error Resume Next\n");

	for (var i = 2; i <= maxVersion; i++) 
		document.write("flash" + i + "Installed = IsObject(CreateObject(\"ShockwaveFlash.ShockwaveFlash." + i + "\"))\n");

	document.write("</SCR" + "IPT>\n"); 
}

if (navigator.plugins) 
{		
	if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) 
	{	
		var isVersion2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
		var flashDescription = navigator.plugins["Shockwave Flash" + isVersion2].description;
		var flashVersion = parseInt(flashDescription.charAt(flashDescription.indexOf(".") - 1));
		flash2Installed = flashVersion == 2;		
		flash3Installed = flashVersion == 3;
		flash4Installed = flashVersion == 4;
		flash5Installed = flashVersion == 5;
	}
}

for (var i = 2; i <= maxVersion; i++) 	
	if (eval("flash" + i + "Installed") == true) 
		actualVersion = i;

if (navigator.userAgent.indexOf("WebTV") != -1) 
	actualVersion = 2;
	
// alert("Dieser Browser unterstützt Flash Version " + actualVersion + ".");

function showFlashPage(requiredVersion, flashPageUrl, nonFlashPageUrl)
{
	if (actualVersion >= requiredVersion)
		location.href = flashPageUrl;
	else
		location.href = nonFlashPageUrl;
}

function showFlashBanner(requiredVersion, swfPath, width, height, bgcolor, alternateImagePath)
{
	if (actualVersion >= requiredVersion)
	{
		document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" " + 
			"codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=" + requiredVersion + ",0,0,0\" " + 
			"width=" + width + " height=" + height + ">" + 
			"<param name=movie value=\"" + swfPath + "\">" + 
			"<param name=quality value=high>" + 
			"<param name=bgcolor value=" + bgcolor + ">" + 
			"<param name=wmode value=transparent>" + 
			"<embed src=\"" + swfPath + "\" quality=high bgcolor=" + bgcolor + " " + 
			"width=" + width + " height=" + height + " type=\"application/x-shockwave-flash\" " + 
			"pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\"></embed></object>");
	}
	else
		document.write("<img src=\"" + alternateImagePath + "\" border=0 width=" + width + " height=" + height + " />");
}
//-->
