<!-- hide
    var w = 60
    var x = 60;
    var y = 1;
    var z = 30;
    var now;
  
    function startClock() {
     x = x-y;
     document.form1.clock.value = x;
     if (x < 1) reload();
     timerID = setTimeout("startClock()", 1000);
    }
  
    function reload() {
     now = new Date();
     var camImg1 = "http://www.wirralcam.org/feeds/newbrighton.jpg" + "?" + now.getTime();
     document.widepicture1.src = camImg1;
          z = z - 1;
     if ( z < 1 ) w = w + 1;
     x = w;
     document.form1.clock.value = x;
    }

    
   // end hide -->