function PopupAnfahrt (breite, hoehe) {
	x=screen.availWidth/2-breite/2;
	y=screen.availHeight/2-hoehe/2;

	window.open ('anfahrt.html', '', 'width=' + breite + ', height=' + hoehe + ', left=' +x + ', top=' + y + ', screenX=' + x + ',screenY=' + y + ', toolbar=' + 0 + ', scrollbars=' + 0 + ', location=' + 0 + ', menubar=' + 0 + ', resizable=' + 0 + ', statusbar=' + 0);
}

function PopupHaftung (breite, hoehe) {
	x=screen.availWidth/2-breite/2;
	y=screen.availHeight/2-hoehe/2;

	window.open ('haftung.html', '', 'width=' + breite + ', height=' + hoehe + ', left=' +x + ', top=' + y + ', screenX=' + x + ',screenY=' + y + ', toolbar=' + 0 + ', scrollbars=' + 0 + ', location=' + 0 + ', menubar=' + 0 + ', resizable=' + 0 + ', statusbar=' + 0);
}

function PopupWebdesign (breite, hoehe) {
	x=screen.availWidth/2-breite/2;
	y=screen.availHeight/2-hoehe/2;

	window.open ('webdesign.html', '', 'width=' + breite + ', height=' + hoehe + ', left=' +x + ', top=' + y + ', screenX=' + x + ',screenY=' + y + ', toolbar=' + 0 + ', scrollbars=' + 0 + ', location=' + 0 + ', menubar=' + 0 + ', resizable=' + 0 + ', statusbar=' + 0);
}