
///////
function deleteFoto(id) 
{   
	Check = confirm("Soll das Foto wirklich unwiderruflich gelöscht werden?");
	if(Check == true) location.href = "deleteFotoDB.php?foto_id=" + id;
}
///////
function logout() 
{   
	Check = confirm("Möchten Sie sich wirklich abmelden?");
	if(Check == true) location.href = "l0g0ut.php";
}

