<!--
function popUpFenster(theURL, winName, h, b, l, o, scroll) {
	if (l != "-") {
		var links = l;
	}
	else {
		var links =  Math.round((screen.width - b)/2);
	}
	if (o != "-") {
		var oben = o;
	}
	else {
		var oben = Math.round((screen.height - h)/2 - screen.height/30);
	}
	if (scroll == "undefined") {
		scroll = "yes";
	}
	features = 'directories=no, personalbar=no, toolbar=no, menubar=no, status=no, location=no, resizable=no, scrollbars=' + scroll + ', height=' + h +', width=' + b + ', top=' + oben + ', left=' + links;
  winName = window.open(theURL, winName, features);
	winName.focus();
}
//-->
