<!--
var dir = window.location.pathname;
var end = dir.length - 5;
var loc = dir.substring(8,end)
var speed = 2;
var y = 1;
var x = speed + y;
var time = x - y;
var now;
campicture = new Image();
function openremoteWindow()
{
 stopClock();
 open ("jscamremote.html","JSCam_Remote",
       "height=480,width=704,scrollbars=0,resizable=yes,status=0")
}

function stopClock() 
{
 x = "off";
 document.form0.clock.value = x;
}

function startClock() 
{
 if (x != "off")
 {
  x = x - y;
  document.form0.clock.value = x;
  if (x <= 0)
  {
   reload();
  }
  timerID = setTimeout("startClock()", 1000);
 }
}

function reload()
{
 now = new Date();
 var camImg = "http://www.visitduluth.com/snocross-images/livecam.jpg" + "?" + now.getTime();
 document.campicture.src = camImg;
 x = speed;
 document.form0.clock.value = x;
}
//end hide -->

