function js_show_help(id){
	actmenuitem = id;
	document.getElementById(id).style.display = "block";
}
function js_hide_help(id){
	document.getElementById(id).style.display = "none";
}
function js_confirm_delete(formular){
	if(formular.submitbutton=='delete'){
		delete_user = confirm("Möchten Sie Ihren Zugang wirklich löschen?");
		return delete_user;
	} else return true;	
}
