  var ns6=document.getElementById&&!document.all

  function primeThePump() {
    setTimeout("removeFlashIntro()", 12000);
  
  }
  
 function removeFlashIntro() {
    myMovieCell = ns6 ? document.getElementById("myFlashLayer") : document.all.myFlashLayer;
    if (myMovieCell) {
      myMovieCell.innerHTML = "";
    }
  }
    window.onload = primeThePump;