function MM_showHideLayers() { //v9.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) 
  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}

function fmi_loadflash(myWidth, myHeight, mySrc, myId, myAlt)
{
			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=8,0,24,0',
						'width', myWidth,
						'height', myHeight,
						'src', mySrc,
						'quality', 'high',
						'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
						'align', 'middle',
						'play', 'true',
						'loop', 'true',
						'scale', 'showall',
						'wmode', 'transparent',
						'devicefont', 'false',
						'id', myId,
						'bgcolor', '#ffffff',
						'name', myId,
						'menu', 'true',
						'allowScriptAccess','sameDomain',
						'allowFullScreen','false',
						'movie', mySrc,
						'salign', ''
						); //end AC code
				} else {  // flash is too old or we can't detect the plugin
					var alternateContent = myAlt;
					document.write(alternateContent);  // insert non-flash content
				}
			}
}