function openPopup(DATEI,WIDTH,HEIGHT) {
  top.name = "popup";
  var popup = window.open(DATEI,"filme","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width="+WIDTH+",height="+HEIGHT);
  if( navigator.appName.substring(0,8) == "Netscape" ) {
    popup.location = popupURL;
    popup.opener = self;
  }
  popup.focus();
}

function openTelKonf() {
  var telAnzahl = document.teaserTelefonK.guest.selectedIndex + 1;
  openPopup('conference/conference2.php?guest='+telAnzahl,200,200);
}

// JS function for uncrypting spam-protected emails:
function UnCryptMailto(s) { //
	var n=0;
	var r="";
	for(var i=0; i < s.length; i++) {
		n=s.charCodeAt(i);
		if (n>=8364) {n = 128;}
		r += String.fromCharCode(n-(1));
	}
	return r;
}
// JS function for uncrypting spam-protected emails:
function linkTo_UnCryptMailto(s) { //
	location.href=UnCryptMailto(s);
}


