<!-- hide
    var x = 60;
    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.org/feeds/TC.jpg" + "?" + now.getTime();
     document.campicture.src = camImg;
     x = 60;
     document.form1.clock.value = x;
    }

function doStuff() {
makeHeight();
startClock();
populate();
}

window.onload=doStuff;
   // end hide -->