
function confirmation(id){
	var answer = confirm("Are you sure you want to delete this entry?");
	var link="databaseDelete.php?id="+id;
	if (answer){
		window.location.href = link;
	}
	else{
		alert("Entry not deleted.");
	}	
}

