<!-- hide
    var w = 10;
    var x = 10;
    var y = 1;
    var z = 30;
    var now;
  
    function startClock() {
     x = x-y;
     document.form2.clock.value = x;
     if (x < 1) reload();
     timerID = setTimeout("startClock()", 1000);
    }
  
    function reload() {
     now = new Date();
     var camImg2 = "http://www.wirralcam.org/feeds/rhos.jpg" + "?" + now.getTime();
     document.campicture2.src = camImg2;
     z = z - 1;
     if ( z < 1 ) w = w + 1;
     x = w;
     document.form2.clock.value = x;
    }
   // end hide -->