function jumpToCat( URL, mode, pid ) {
	if (URL == "-1") {
		return;
	} else {
		if(pid == "-1"){
			top.location.href = "/rechtsberatung/" + URL + "?mode=" + mode;
		} else {
			top.location.href = "/rechtsberatung/" + URL + "?mode=" + mode + "&pid=" + pid;
		}
	}
}