function confirmation() {
	var answer = confirm("Delete, are you Sure? There is no undo.")
	if (answer){
		alert("This has been deleted!")
		window.location = "#";
	}
}
function confirmation2() {
	var answer = confirm("Renew, are you Sure?")
	if (answer){
		alert("This advertisement has been renewed successfully!")
		window.location = "#";
	}
}
function confirmation3() {
	var answer = confirm("Renew, are you Sure?")
	if (answer){
		alert("This listing has been renewed successfully!")
		window.location = "#";
	}
}