ho modificato 2 righe nello script e va anche con mozilla ma non con opera
codice:
  <script language="javascript" type="text/javascript">
   <!--
    var espandi = 0;
        function Loading() {
           document.getElementById('barra').style.width = espandi;
           espandi++;
           document.getElementById('percentuale').innerHTML= Math.round(espandi / 2) + "%";
              if (espandi != 200) {
                  window.setTimeout("Loading(), 10");
              }
        }
        function Go() {
           location.href = "http://pro.html.it";
        }
        window.setTimeout("Go()", 6000);
   //-->
  </script>