/* Aufruf Video und Katalog aus FUe und FI */
function openLoadVidKat(urlkatalog,theWidth,theHeight) {
  var top = (screen.availHeight - theHeight)/3;
  var left = (screen.availWidth - theWidth)/2;
  myparams = "width="+theWidth+",height="+theHeight+",top="+top+",left="+left+",screenX="+left+",screenY="+top+",resizable=yes,scrollbars=auto,status=yes";
  myfenster = window.open(urlkatalog, 'WLWVidKat', myparams);
  myfenster.focus();
}

/* Aufruf Video */
function openLoadVideo(url) {
  openLoadVidKat(url,388,350);
}

/* Aufruf Katalog */
function openLoadKatalog(url) {
  openLoadVidKat(url,900,750);
}

/* Aufruf Impressum aus FUe */
 function popup(dokument, wname) {
	myparams = "width=" + 550 + ",height=" + 560 + ",resizable=yes,scrollbars=yes,status=yes";
	myfenster = window.open(dokument, wname, myparams);
	myfenster.focus();
 }