function getFlashMovieObject(movieName) {
      if (window.document[movieName]) {
            return window.document[movieName];
      }
      if(navigator.appName.indexOf("Microsoft Internet")==-1) {
            if(document.embeds && document.embeds[movieName]) return document.embeds[movieName]; 
      } else {
            return document.getElementById(movieName);
      }
}

function selectCountryJS(x) {
      var kk = getFlashMovieObject("karte");
      kk.SetVariable("/:vv", x);
}

function selectCountrySWF(x) {
      for(var f = 1; f <= 1000; f++) {
            if(document.getElementById('vv' + f)) document.getElementById('vv' + f).className = 'inact';
      }
      if(x > 0) document.getElementById('vv' + x).className = 'act';
}
