function confirmSubmit() {
 if (confirm("Do you really want to delete this question?")) return true;
 else return false;
}

