// moock fpi [f.lash p.layer i.nspector]// version: 1.3.7// written by colin moock// code maintained at: http://www.moock.org/webdesign/flash/detection/moockfpi/// terms of use posted at: http://www.moock.org/terms/// =============================================================================// These are the user defined globals.// Modify the following variables to customize the inspection behaviour.var requiredVersion = 5;   // Version the user needs to view site (max 9, min 2)var useRedirect = true;    // Flag indicating whether or not to load a separate                           // page based on detection results. Set to true to                           // load a separate page. Set to false to embed the                           // movie or alternate html directly into this page.                           // Only set next three vars if useRedirect is true...var flashPage   = "deutsch/home/home.html"    // The location of the flash movie pagevar noFlashPage = "noflash.html"  // Page displayed if the user doesn't have the                                  // plugin or we can't detect it.var upgradePage = "upgrade.html"  // Page displayed if we detect an old plugin// =============================================================================// System globalsvar jsVersion = 1.0;            // the version of javascript supported// browserdetectionvar userAgent = navigator.userAgent.toLowerCase();var ieWin = ((userAgent.indexOf("win") > -1) && (userAgent.indexOf("opera") < 0) && (document.all));// browserdetailsvar ieWin40 = ((ieWin)&&(userAgent.indexOf("msie 4.") > -1)&&(userAgent.indexOf("msie 3.") < 0)&&(userAgent.indexOf("msie 5.") < 0));var ieWin50 = ((ieWin)&&(userAgent.indexOf("msie 5.") > -1)&&(userAgent.indexOf(".5") < 0));var ieWin55 = ((ieWin)&&(userAgent.indexOf("msie 5.5") > -1));var ieWin60 = ((ieWin)&&(userAgent.indexOf("msie 6.") > -1));if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4)) {	window.location.href = "browserupdate.html" ; }else if(ieWin40 || ieWin50) {	window.location.href = "browserupdate.html" ; }else {	window.location.href = "frameset_german.html" ;}
