function jwpopup(URL,JWNAME) {
	if (JWNAME != "extern")	{
		if ( (JWNAME != "jwCAMPUSTOPLINE") && (JWNAME != "jwAZUBITOPLINE") ) {
				window.name = 'location';
		}				
	}
	nw = window.open(URL,JWNAME,'dependent=no,titlebar=yes,toolbar=no,status=no,menubar=no,location=no,hotkeys,directories=no,resizable,scrollbars,height='+height+',width='+width+',left='+x+',top='+border);
	nw.focus();
	if(nw) {
		return false;
	} else {
		return true;
	}}

	<!--
// Breite des Fensters
var border = 50;
var width = 900; // Breite des Fensters
var height = window.screen.availHeight - (2 * border);
var x = window.screen.availWidth - (width + border);
var y = border;
var nw = null;

if (navigator.platform.search(/linux/i) != -1) {
  height = height-25;
}

// Netscape v4.x
if (document.layers) {
	height = height - 30;
	x = x - border;
}
function pruefen() {


// 1. wird die Seite in einem Frameset aufgerufen?

if (parent.frames.length == 0)
top.location.href = "../../Index.html";
else
{
// 2. prüfen ob es auch Ihr Frameset ist
// einfach den Namen des 1. Frames abfragen

 if(top.frames[0].name != "FrameLogo")
 top.location.href = "../../Index.html"
 }
 return
}

