

function DelGallery(Gallery_ID) {

	Check = confirm("Die Galerie wird gelöscht ...\n\nKorrekt?");
	if (Check == true) {
	 
	  location.href="index.php?show=gallery&action=deletegallery&id=" + Gallery_ID;

	}

}

function DelProfile(Profile_ID) {

	Check = confirm("Dieses Profil wird gelöscht ...\n\nKorrekt?");
	if (Check == true) {
	 
	  location.href="index.php?show=retire&action=retire&id=" + Profile_ID;

	}

}


function DelComment(Comment_ID, Betreff,Foto_ID) {

	Check = confirm("Der Kommentar von \n\n" + Betreff + "\n\n wird unwideruflich gelöscht, korrekt?");
	if (Check == true) {
	 
	  location.href="index.php?site=gallery.php&action=delcomment&id=" + Comment_ID + "&foto_id=" + Foto_ID;

	}

}