<!-- hide
    var x = 30;
    var y = 1;
    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 camImg = "http://www.wirralcam.com/feeds/hilbig12.jpg" + "?" + now.getTime();
     document.campicture.src = camImg;
     x = 30;
     document.form1.clock.value = x;
    }
   // end hide -->