/* Javascript routines for pubmed_search.php */

// Validate that this is what the user wants to do
function validate( f )
{
  var submit_ok = confirm("Are you sure? Press Ok to indicate that you are " +
                          "finished editing this information");
  if ( ! submit_ok ) return( false );

  return( true );
}
 

