<!--
function WebcamWindow(name, url) {
  remoteprint = window.open(url, name, 'width=400,height=320,resizable=1,scrollbars=1,toolbar=1');
  if (remoteprint != null && navigator.appName == 'Netscape' && navigator.appVersion.charAt(0) > '2') {
    remoteprint.focus();
  }
}
//-->
