function popup(url, width, height) {
	var options = 'menubar=no,status=no,scrollbars=yes,width=716,height=800,resizable=yes,toolbar=no';
	if (height > screen.availHeight) height = screen.availHeight;
	if (width > screen.availWidth) width = screen.availWidth;
	options += (',height='+height+',width='+width);
	window.open(url, 'popup', options);
	return false;
}

function closePopup() {
	if (window.opener) {	// wir wurden als popup geoeffnet
		window.close();
		return false;
	} else {	// wir kommen z.B. von der Suchmaschine -> dem Link folgen!
		return true;
	}
}

