
<!--
var base = "http://219.111.32.208/";

var video_on = false;
var frame_url = base + "-wvhttp-01-/image.cgi?v=jpg:640x480&seq=";
var fcount = 0;
var fcount_max = 5400;

function do_start() {
  video_on = true;

  document.getElementById("video").onload = get_frame;
  document.getElementById("video").src = frame_url + Math.random();

  document.getElementById("video").oncontextmenu = function() {return false}; // disable contextmenu
}

function do_stop() {
  video_on = false;
  fcount = 0;

  document.getElementById("video").onload = null;
  document.getElementById("video").src = "../../img/unconnected.jpg";
  
  document.getElementById("video").oncontextmenu = function() {return true}; // enable contextmenu
}

function start_stop() {
  if (video_on) {
    do_stop();
  }
  else {
    do_start();
  }
}

function get_frame() {
  if (video_on) {

    if (fcount < fcount_max) {
      document.getElementById("video").src = frame_url + Math.random();
      fcount = fcount+1;
    }
    else {
      do_stop();
    }
  }
}
//-->

