  var ns6=document.getElementById&&!document.all

  function primeThePump() {
    if (ns6) {
      //alert("removing");
      setTimeout("removeFlashIntro()", 5000);
    } else {
      setTimeout("removeFlashIntro()", 10500);
    }
  }

  function removeFlashIntro() {
    myMovieCell = ns6 ? document.getElementById("myTD") : document.all.myTD;
    myMovieCell.innerHTML = "";
   // alert("done");
  }
  window.onload = primeThePump;