<!-- webcam.js hide
var x = 30;
var y = 1;
var now;
function caminawin()
{ window.open('http://homepage.ntlworld.com/uk-images/t_image01.jpg', 'popwin', 'scrollbars=0,status=0,toolbar=0,resizable=0,width=346,height=265,top=150,left=185'); }
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://homepage.ntlworld.com/uk-images/t_image01.jpg" + "?" + now.getTime();
document.campicture.src = camImg;
x = 30;
document.form1.clock.value = x;
}
// end hide --> 