// <![CDATA[

// PopUp_Fenster
function Fenster(Adresse, Breite, Hoehe) {
	var win = window.open(Adresse,'Webcam','width=' + Breite
	 + ',height=' + Hoehe
	 + ',resizable=no,menubar=no,locationbar=no,scrollbars=yes,toolbar=no,copyhistory=no,directories=no,l');

	win.moveTo(50,20);
	win.creator=self;
	
	if(win.window.focus){
		win.window.focus();
	}
}
// ]]>
