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