var FlashInstalled;	// is the Flash ActiveX control installed?

document.write('<SCR' + 'IPT LANGUAGE=VBScript SRC=ieflashdetect.vbs></SCR' + 'IPT>')

function DetectFlash() {
  	if ((navigator.plugins) && (navigator.plugins["Shockwave Flash"]))
	    this.installed = true;
	else if(FlashInstalled)
		this.installed = true;
	else {
		this.installed = false;
	}
}
