function deleteComment(id)
{
 confirmation = window.confirm("Möchtest du diesen Eintrag wirklich löschen?");
 if(confirmation === true){
 document.getElementById("deleteComment").value=id;
 document.getElementById("deleteCommentForm").submit();
}
}

function deleteBlog(id)
{
 confirmation = window.confirm("Möchtest du diesen Eintrag wirklich löschen?");
 if(confirmation === true){
 document.getElementById("deleteEntry").value=id;
 document.getElementById("deleteEntryForm").submit();
}
}

function deleteHaunt(id)
{
 confirmation = window.confirm("Willst du diese Location wirklich aus deinen Lieblingsplätzen entfernen?");
 if(confirmation === true){
 document.getElementById("deleteEntry").value=id;
 document.getElementById("deleteEntryForm").submit();
}
}