/* ./js/delete.js */
function deleteAccount(){
	anchor = document.getElementById("delete_anchor");
	anchor.style.color = "red";
	anchor.firstChild.nodeValue = "Are you sure you want to delete your account? There is no undo for this action. (Click to continue)";
	anchor.setAttribute("href", "./delete.php");
}