			var hasProductInstall = DetectFlashVer(7, 0, 0);
			var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
			if ( hasProductInstall && !hasReqestedVersion ) {
				var MMPlayerType = (isIE == true) ? "ActiveX" : "PlugIn";
				var MMredirectURL = window.location;
				document.title = document.title.slice(0, 47) + " - Flash Player Installation";
				var MMdoctitle = document.title;
			
				AC_FL_RunContent(
					"src", "media/playerProductInstall",
					"FlashVars", "MMredirectURL="+MMredirectURL+'&MMplayerType='+MMPlayerType+'&MMdoctitle='+MMdoctitle+"",
					"width", "215",
					"height", "138",
					"style", "margin:50px",
					"quality", "high",
					"allowScriptAccess","sameDomain",
					"type", "application/x-shockwave-flash",
					"pluginspage", "http://www.adobe.com/go/getflashplayer"
				);
			} else if (hasReqestedVersion) {
				AC_FL_RunContent(
						"src", "media/top",
						"width", "900",
						"height", "200",
						"quality", "high",
						"allowScriptAccess","sameDomain",
						"type", "application/x-shockwave-flash",
						'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
						"pluginspage", "http://www.adobe.com/go/getflashplayer"
				);
			} else {  // flash is too old or we can't detect the plugin
				var alternateContent = '<p align="center"><a href="http://www.adobe.com/go/getflashplayer"><img src="../images/get_flash_player.gif" alt="get flash" /></a></p>';
				document.write(alternateContent);  // insert non-flash content
			}
			
			
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}