﻿// LngSelect.js
// Ajax control to manage the language selection
// Copyright (c) by IM-Systems 2007
// ----- 
// 05.11.2007 MPI created

var CountriesBehaviour = {
  lngsel : "de",
  refresh : 0,
  
  init: function() {
//    this.changeClass(this.lngsel);
  }, // init
  
  changeDisplay: function(selval) {
    var coll = document.getElementsByTagName("SELECT");
    for (var z = 0; z < coll.length; z++) {
      if (coll[z].name != "continent") {
        coll[z].style.display = ((coll[z].name == selval) ? "inline" : "none");
      }
    }
  }
  
} // CountriesBehaviour
