
if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
	alert("This page requires AC_RunActiveContent.js.");
} else {
	var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	if(hasRightVersion) {  // if we've detected an acceptable version
		// embed the flash movie
		AC_FL_RunContent(
			'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
			'width', '960',
			'height', '660',
			'src', '/fla/portal',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'devicefont', 'false',
			'id', 'portal',
			'bgcolor', '#ffffff',
			'name', 'portal',
			'menu', 'false',
			'allowScriptAccess','sameDomain',
			'allowFullScreen','false',
			'movie', '/fla/portal',
			'salign', ''
			); //end AC code
	} else {  // flash is too old or we can't detect the plugin
		var alternateContent = '<img src="images/flashbanner.jpg" width="960" height="660" border="0" usemap="#Map" />'
+'<map name="Map" id="Map"><area shape="rect" coords="264,75,440,179" href="http://www.arconnections.com/Individuals/?page=about" target="_parent" />'
+'<area shape="rect" coords="566,181,790,294" href="http://www.arconnections.com/HRPro/?page=about" target="_parent" />'
+'<area shape="rect" coords="494,65,943,123" href="http://www.adobe.com/go/getflashplayer" target="_blank" /></map>'
+'';
	document.write(alternateContent);  // insert non-flash content
	}
}


