// Get element to add ad to const ad = document.getElementById('flash-banner-ad'); // Show ad if (hasFlash) { // Get list of ads var request = new XMLHttpRequest(); request.open("GET", "/flash/ads/ads.json", false); request.send(null); const adList = JSON.parse(request.responseText); // Pick random ad to embed let i = Math.floor(Math.random() * adList.length); let randomAd = adList[i]; ad.innerHTML = ` `; } else { ad.innerHTML = "
This content requires Flash player or Ruffle.
"; } ad.innerHTML += "The ads used on this site are historic flash banner ads.
"