

function confirmation() {
	var answer = confirm("Are you sure you want to delete the following profile?")
	if (answer){
		return true;
	}
	else{
		return false;
	}
}

