<!--
var BaseURL = "http://loveman.homeip.net:48688/";
var DisplayWidth = "352";
var DisplayHeight = "240";
var File = "axis-cgi/jpg/image.cgi?resolution=CIF&camera=4";
var theTimer = setTimeout('reloadImage()', 1);
function reloadImage()
{
  theDate = new Date();
  var url = BaseURL;
  url += File;
  url += '&dummy=' + theDate.getTime().toString(10);
  // The dummy above enforces a bypass of the browser image cache
  // Here we load the image
  document.theImage.src = url;
  theTimer = setTimeout('reloadImage()', 250);
}
document.write('<img name="theImage" src="" height="' + DisplayHeight + '"');
document.write('width="' + DisplayWidth + '" alt="Live image">');
-->
