function openPopUp(url, width, height) {
	var left = (screen.width/2)-(width/2);
	
	popup = window.open(url, "Zweitfenster", "width="+width+",height="+height+",left="+left+",top=0, scrollbars=yes");
	popup.focus();
}