//////////////////////////////////////////////////////////////////////
// Variables to be set for the database search function.  (English) //
//////////////////////////////////////////////////////////////////////

var blankFieldProv = new String("-------------------------");
var blankFieldCity = new String("-------------------------");
var ProvLookup = new Object();

/////////////////////////////////////////////////////////////////////////////////////////////////////
// The only manual population is here.  These abbreviations must match those found in the database.//
/////////////////////////////////////////////////////////////////////////////////////////////////////

  ProvLookup['AB'] = new String('Alberta');
  ProvLookup['BC'] = new String('British Columbia');
  ProvLookup['MB'] = new String('Manitoba');
  ProvLookup['NB'] = new String('New Brunswick');
  ProvLookup['NL'] = new String('Newfoundland');
  ProvLookup['NS'] = new String('Nova Scotia');
  ProvLookup['ON'] = new String('Ontario');
  ProvLookup['PE'] = new String('Prince Edward Island');
  ProvLookup['QC'] = new String('Quebec');
  ProvLookup['SK'] = new String('Saskatchewan');

/////////////////////////////////////////////////////////////////////////////////////////////////////

