<!--

   function fixFlashObjects() {
      n = navigator.userAgent;
      w = n.indexOf( "MSIE" );

      if( ( w > 0 ) && ( parseInt( n.charAt( w + 5 ) ) > 5 ) ) {
         T = [ "object", "embed", "applet" ];

         for( j = 0; j < 2; j++ ) {
            E = document.getElementsByTagName( T[ j ] );

            for( i = 0; i < E.length; i++ ) {
               P = E[ i ].parentNode;

               var doFix = true;

               if( P.getAttribute( 'fixed' ) ) {
                  if( P.getAttribute( 'fixed' ) == 'true' ) { doFix = false; } }

               if( doFix == true ) {
                  H = P.innerHTML;

                  P.removeChild( E[ i ] );

                  P.innerHTML = H;

                  P.setAttribute( 'fixed', 'true' ); } } } } }

//-->