
function detectflash(){
//********Set the names of your web pages here:*****
	flashpage 		= "index.cfm?AFC650F4-50BA-1DC3-65D6-238CB8586A48"
	upgradepage		= "http://www.macromedia.com"
	nonflashpage	= "index.cfm?AFC6B768-50BA-1DC3-65E4-77B00D5377E4"
//**************************************************
	noautoinstall = ""
	if(navigator.appName == "Microsoft Internet Explorer" && 
		(navigator.appVersion.indexOf("Mac") != -1 || 
		 navigator.appVersion.indexOf("3.1") != -1)){
			noautoinstall = "true";
	}
	if (navigator.appName == "Microsoft Internet Explorer" &&
		 noautoinstall != "true"){
			window.location=flashpage;
	}
	else if(navigator.plugins){
		if(navigator.plugins["Shockwave Flash"]){
			window.location=flashpage;
		}
		else if(navigator.plugins["Shockwave Flash 4.0"]){
			window.location=upgradepage;
		}
		else{
			window.location=nonflashpage;
		}
	}
}

detectflash();