/* 2006 (c) www.aim-sw.com */
/* author: stefan schmiedleitner  */
/* worldmap.js contains functions for the dynamic worldmap */

var activeRegion = '';
function openRegion(id) {
 var obj = document.getElementById(id);
 if (activeRegion != '') closeRegion(activeRegion);
 if ((id != '') && (id != null)) {
  activeRegion = id;
  obj.style.visibility = 'visible';
 }
}

function closeRegion(id) {
 var obj = document.getElementById(id);
 if ((id != '') && (id != null)) {
  activeRegion = id;
  obj.style.visibility = 'hidden';
 }
}


var activeCountry = '';
function openCountry(id) {
 var obj = document.getElementById(id);
 if (activeCountry!= '') closeCountry(activeCountry);
 if ((id != '') && (id != null)) {
  activeCountry= id;
  obj.style.display = 'block';
 } 
}
 
function closeCountry(id) {
 var obj = document.getElementById(id);
 if ((id != '') && (id != null)) {
  activeCountry= id;
  obj.style.display = 'none';
 }
}
