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://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0',			'width', '210',			'height', '380',			'src', '../flash/de_map',			'quality', 'high',			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',			'align', 'middle',			'FlashVars', 'currCommName=paladin_mc',			'play', 'true',			'loop', 'true',			'scale', 'showall',			'wmode', 'window',			'devicefont', 'false',			'id', 'de_map',			'bgcolor', '#576572',			'name', 'de_map',			'menu', 'true',			'allowScriptAccess','sameDomain',			'allowFullScreen','false',			'movie', '../flash/de_map',			'salign', ''			); //end AC code	} else {  // flash is too old or we can't detect the plugin		var alternateContent = '<img src="../flash/de_map.gif" alt="" width="210" height="380" border="0" />';		document.write(alternateContent);  // insert non-flash content	}}
