/*   das script prueft den browser und leitet entsprechend um    */
/*   netscape wird innerhalb dieser Datei auf Plugin gecheckt      */
/*   und umgeleitet -------- microsoft wird auf die ms-abfrage       */
/*   seite geleitet !!!!!!!!!!!!!!!!!!                                               */

var plugin=navigator.plugins["Shockwave Flash"];
checkBrowser();
function checkBrowser ()
{
	userAg = navigator.userAgent;
	bName = navigator.appName;
	bVer  = parseInt(navigator.appVersion);
	if (bVer >= 4)
	{
		if (bName.substring(0,9) == "Microsoft")
		/* wenn MS, dann geh bitte hier hin */
			window.location.replace("check.html");
	else
		if (bName.substring(0,8) == "Netscape")
		/* wenn NS, vergleiche plugin und mach das richtige*/
			if (plugin)
			{
				window.location=('index_flash.html');
			}
			else
			{
				window.location=('index_noflash.html');
			}
    }
	else
	{
        if (bVer == 3)
		{
        }
    else
	{
    } 
	} 
}

// -->



