function goToRegion(select)
{
  var selIndex = select.selectedIndex;
  var domena = select.options[selIndex].value;
  location.href = 'http://' + domena;
}

function activateMap()
{
  if (typeof loadMap == 'function')
    loadMap();
}

function deactivateMap()
{
  if(typeof GUnload == 'function')
    GUnload();
}