/* News */
function popup_win(ziel, querystring, windowname) {
	var w = 660;
	var h = 570;
	var pos_x = Math.round((screen.width  - w)/2);
	var pos_y = Math.round((screen.height - h)/2);
	popup_win_win = window.open(ziel + "?" + querystring, windowname, "top="+pos_y+",left="+pos_x+",width="+w+",height="+h+",resizable=no,status=no");
	popup_win_win.focus();
}

/* Geschäftsführung */
function pop_gf(ziel) {
	var w = 290;
	var h = 450;
	var pos_x = Math.round((screen.width  - w)/2);
	var pos_y = Math.round((screen.height - h)/2);
	pop_gf_win = window.open(ziel, "pop_gf_name", "top="+pos_y+",left="+pos_x+",width="+w+",height="+h+",resizable=no,status=no");
	pop_gf_win.focus();
}
/* Kontakte - Anfahrtsskizze */
function popup_win_anfahrt(ziel, querystring, windowname) {
	var w = 709;
	var h = 667;
	var pos_x = Math.round((screen.width  - w)/2);
	var pos_y = Math.round((screen.height - h)/2);
	popup_win_win = window.open(ziel + "?" + querystring, windowname, "top="+pos_y+",left="+pos_x+",width="+w+",height="+h+",resizable=no,status=no");
	popup_win_win.focus();
}