function popUp(address) {
	popUp(address, "Referenzen");
}

function popUp(address, title) {
	popUpWindow = window.open(address, title, "width=800,height=600,resizable=yes,scrollbars=yes");
	popUpWindow.focus();
}

