   ts = 1000;         // interval spacing in milliseconds
   tsrandom = 500;   // random interval in milliseconds
   webcam1s = "http://webcam1.komar.org/current-half.jpg";
   webcam2s = "http://webcam2.komar.org/current-half.jpg";
   webcam3s = "http://webcam03.komar.org/current-half.jpg";
   webcam1 = "http://webcam1.komar.org/current.jpg";
   webcam2 = "http://webcam2.komar.org/current.jpg";
   webcam3 = "http://webcam03.komar.org/current.jpg";

   function refreshwebcam1s() {
      tmp = new Date();
      tmp = "?"+tmp.getTime();
      tsrand = Math.floor(tsrandom*Math.random());
      document.images["refreshwebcam1s"].src = webcam1s+tmp;
      setTimeout("refreshwebcam2s()", (ts+tsrand));
   }
   function refreshwebcam2s() {
      tmp = new Date();
      tmp = "?"+tmp.getTime();
      tsrand = Math.floor(tsrandom*Math.random());
      document.images["refreshwebcam2s"].src = webcam2s+tmp;
      setTimeout("refreshwebcam3s()", (ts+tsrand));
   }
   function refreshwebcam3s() {
      tmp = new Date();
      tmp = "?"+tmp.getTime();
      tsrand = Math.floor(tsrandom*Math.random());
      document.images["refreshwebcam3s"].src = webcam3s+tmp;
      setTimeout("refreshwebcam1s()", (ts+tsrand));
   }

   function refreshwebcam1() {
      tmp = new Date();
      tmp = "?"+tmp.getTime();
      tsrand = Math.floor(tsrandom*Math.random());
      document.images["refreshwebcam1"].src = webcam1+tmp;
      setTimeout("refreshwebcam1()", 3*(ts+tsrand));
   }
   function refreshwebcam2() {
      tmp = new Date();
      tmp = "?"+tmp.getTime();
      tsrand = Math.floor(tsrandom*Math.random());
      document.images["refreshwebcam2"].src = webcam2+tmp;
      setTimeout("refreshwebcam2()", 3*(ts+tsrand));
   }
   function refreshwebcam3() {
      tmp = new Date();
      tmp = "?"+tmp.getTime();
      tsrand = Math.floor(tsrandom*Math.random());
      document.images["refreshwebcam3"].src = webcam3+tmp;
      setTimeout("refreshwebcam3()", 3*(ts+tsrand));
   }



   // setTimeout("refreshwebcam1s()", 3000);
