function prendiElementoDaId(id_elemento) {
        var elemento;
        if(document.getElementById)
          elemento = document.getElementById(id_elemento);
        else
          elemento = document.all[id_elemento];
        return elemento;
      };

      function caricaImmagine(id_immagine,path){
          var stringa;
          stringa = "<img src=\""+path+"\" alt=\"foto_"+id_immagine+"\"/>" ;
          prendiElementoDaId('photo_big').innerHTML = stringa ;
      }