function pauseMusic() { 
  if (navigator.appName.indexOf("Microsoft") != -1) {
      function thisMovie(movieName) { return window[movieName]; }
      var thisObj= "object";
      
  } else {
      function thisMovie(movieName) { return document[movieName]; }
      var thisObj= "embed";
  }
  
  var flashElements = document.getElementsByTagName(thisObj);
         
   for(i=0; i<flashElements.length; i++){ 
        var flashElementName = flashElements[i].attributes.id.value;
        thisMovie(flashElementName).callFlash(); 
   }
}
