var timer = null

function stop()
{
clearTimeout(timer)
}

function start()
{
var time = new Date()
var hours = time.getHours()
var minutes = time.getMinutes()
minutes=((minutes < 10) ? "0" : "") + minutes
var seconds = time.getSeconds()
seconds=((seconds < 10) ? "0" : "") + seconds
var clock = hours + ":" + minutes + ":" + seconds
jstime.innerHTML = clock;
timer = setTimeout("start()",1000)
}

function openpopuptwo( name, h, w ) {
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	
	 winch = window.open(name, '', 'toolbar=0,location=0,directories=0, status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width='+w+',height='+h+',left='+winl+',top='+wint);
	 winch.focus();
}

var statusmsg="Saltburnsurfcam LIVE"

function hidestatus(){
window.status=statusmsg
return true
}
//alert('new');

