<!--var requiredVersion = 5;var flash5Installed = false;var actualVersion = 0;var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;	var isWin = (navigator.appVersion.indexOf("Windows") != -1) ? true : false;if(isIE && isWin){ // don't write vbscript tags on anything but ie win	document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n');	document.write('on error resume next \n');	document.write('flash5Installed = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5"))) \n');	document.write('</SCR' + 'IPT\> \n');}function detectFlash(){		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));						actualVersion = flashVersion;		}	}		if(navigator.userAgent.indexOf("WebTV") != -1) actualVersion = 2;	if(isIE && isWin) {		if (flash5Installed == true) {			flash = true;		} else {			flash = false;		}	} else { 		if (actualVersion >= requiredVersion) {			flash = true;		} else {			flash = false;		}	}}detectFlash();	// -->