function showDetail(id, type) {
	if (type == "therapeuten")	window.location.href = "/web/Deutsch/TherapeutenDetail/?id="+id+"&action=therapeutendetail";
	if (type == "supervisoren")	window.location.href = "/web/Deutsch/SupervisorenDetail/?id="+id+"&action=supervisorendetail";
	if (type == "selbsterfahrungsleiter")	window.location.href = "/web/Deutsch/SelbsterfahrungsleiterDetail/?id="+id+"&action=supervisorendetail";
}

function showMap(url, event) {
	Event.stop(event);
	window.open(url, '_blank', 'statusbar=no,location=no,left=100,top=100,width=800,height=600,scrollbars=yes,resizable=yes');
}

function mark(which) {
	which = $(which);
	which.setStyle({
		  backgroundColor: '#fbfbfb'
	});
}
function unmark(which) {
	which = $(which);
	which.setStyle({
		  backgroundColor: '#f4f4f4'
	});
}