﻿// WEBCAM SMALL

var Fenster = null;
function neuesFenster(meineSeite,meinName,w,h,scroll){
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
  Fenster = window.open(meineSeite,meinName,settings)
}

function neu_laden() {
  var a = Math.floor(Math.random()*1000);
  document.webcam.src = "/fileadmin/be_user/img/webcam/bild1_klein.jpg?"+a;
  setTimeout("neu_laden();", 60000);
}
