/*
 *
 * table.js
 *
 * Verification javascript for table query form.
 *
 */

function verify()
{
   var valid = true;
   var msg = "";

   if (! isSelected(document.data_query.circle_id))
   {
      valid = false;
      msg += 'Please select a Count Circle and add it to the "My Query" form before continuing.\n\n';
   }

   if (! isSelected(document.data_query.startYear))
   {
      valid = false;
      msg += 'Please select a starting and ending year for the time range to display\n\n';
   }

   if (! valid)
   {
      alert(msg);
   }

   return valid;
}

