

function confirmRemove(email) {
	var answer = confirm("Are you sure you want to remove "+email+" from the Annabella Creations Database?")
	if (answer){
		document.forms["removeform"].submit();
	}
}
