   function Start(id_name, url_image, deltat) {
      var t = deltat; // Interval in Seconds                                           
      image = url_image; //URL of the Image   
      tmp = new Date();
      tmp = "?"+tmp.getTime() ;
      document.images[id_name].src = image+tmp ;
      setTimeout("Start()", t*1000) ;
   }

