function checkLogout(){
	Check = confirm("Wollen Sie sich wirklich abmelden?");
	if(Check == false){
		return false;
	}else{
		return true;
	}
}
function setAction(back ){
	if ( back )
		return false;
	else{
		window.location.href = "logoutAction";
		return true;
	}
}
