<!--BeginNoIndex-->

function WindowOpen (adress) {
	//	Resultatfenster soll immer in der rechten oberen Ecke des aktiven Browsers erscheinen
	//	Position horizontal: window.screenX + window.width - breite
	//	Position vertical: window.screenY
	var isExplorer = navigator.appName.search(/Microsoft/ig)>=0;
	var hoehe = 470;
	var breite = 420;
	var rtl = false;
	var links = window.screenX + window.innerWidth - breite;
	if(rtl) {
		links = window.screenX;
	}	
	var oben = window.outerHeight - window.innerHeight;
 	if(isExplorer) {
		links = window.screenLeft + document.body.clientWidth - breite;;
		if(rtl) {
			links = window.screenLeft;
		}
		oben = window.screenTop;
		//var locationfix =	"/" + "/" + adress;
		//adress = locationfix;
	}
	var winOptions = 'width=' + breite + ',height=' + hoehe + ',left=' + links + ',top=' + oben + ',resizable=no, status=no';
	ResultWindow = window.open(adress, 'Search', winOptions);
 	ResultWindow.focus();
}
<!--EndNoIndex-->
