      
      // get our flash movie object
      var flashMovie;
      function init() {
      //open accordian
      AccordionMenu.openDtById('foo-1');
      
         if (document.getElementById) {
            flashMovie = document.getElementById("spinner");
            }else{
            flashMovie="spinner";
         }
      }
      // wait for the page to fully load before initializing
       window.onload = init;
       
       
      // for updating the text
      function updateTextA(strText) {
         if (flashMovie) { 
            //var txt = document.getElementById("textarea").value;
            flashMovie.updateText(strText);
         }
      }
 
