function verstecke(id) {
      document.getElementById(id).style.visibility = "hidden";
}
function zeige(id) {
      document.getElementById(id).style.visibility = "visible";
}
function confDelete(){
	ok = confirm("Soll das Projekt wirklich gelöscht werden?");
	return ok;
}