function openNewWindow() {
  popupWin = window.open('windowwebcam.html', 
    'open_window',
    'menubar=no,toolbar=no,location=no,directories=no,status,scrollbars=no,resizable=no,dependent=no,width=400,height=300,left=100,top=100')
}

function $(element){return document.getElementById(element)}

function refreshMe()
{
	document.getElementById("camImage").src = "http://71.228.201.118/cgi-bin/nph-mjgrab?1&time="+escape(new Date());
	window.setTimeout("refreshMe()",5000);
}