function verifyAgree()  {
  e = document.getElementById("agree");

  if(e.checked)  {
    return true;
  }
  else  {
    alert("Please click the checkbox to verify the agreement.");
    return false;
  }
}

function showLocation(locName, show)  {
  eloc = document.getElementById(locName);


  if(show == 1)  {
    eloc.className = locName + " loc";
  }
  else  {
    eloc.className = "hide";
  }

}

function showEuropeanLocation(locName)  {
  showLocation("belgium", 0);
  showLocation("findland", 0);
  showLocation("france", 0);
  showLocation("germany", 0);
  showLocation("netherlands", 0);
  showLocation("spain", 0);
  showLocation("sweden", 0);
  showLocation("switzerland", 0);
  showLocation("uk", 0);

  showLocation(locName, 1);
}

function showAsianLocation(locName)  {
  showLocation("china", 0);
  showLocation("hongKong", 0);
  showLocation("india", 0);
  showLocation("japan", 0);
  showLocation("korea", 0);
  showLocation("malaysia", 0);
  showLocation("singapore", 0);
  showLocation("thailand", 0);

  showLocation(locName, 1);
}