// JavaScript: PopUp Info Fenster

popUp = null;

function ShowInfo(page, thema) {
	var url = page + '.html';
	if (thema != ''){
		url = url + '#' + thema;
	}
	popUp = window.open(
		url,
		'wissen',
		'top=100,left=100,width=400,height=560,scrollbars=yes,resizable=yes'
		)
}

function CloseInfo() {
	if (popUp != null) {
		if (!popUp.closed)
			popUp.close();
	}
}
//

