// JavaScript Document




   <!-- hide
    var x = 10;
    var y = 1;
    var now;
	var cam;


    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.blueridgelakecam.com/cam_1.jpg" + "?" + now.getTime();
     document.campicture.src = camImg;
     x = 10;
     document.form1.clock.value = x;
    }
   // end hide -->
  


<!--
function p7runIt(){ //v1.0 PVII
P7_initTP(4,0);
startClock();
}
onload=p7runIt;
//-->
