
function reset_form() {
    if ( confirm("Are you sure that you want to erase " +
		 "your current answers?") ) {	
      window.document.theform.reset();
    } else {
      window.document.theform.search.focus();
    }	
  }