///////////////////////////////////////////////////////////////////////////////
//  links.js
//  Grecon UK website script for international website chooser.
//    Author: Sean O'Kelly (seanok.125@gmail.com)
//    Date: 2011-09-10
///////////////////////////////////////////////////////////////////////////////


// sites dictionary - mapping of countries to web addresses
var sites = {
  "germany": "http://www.grecon.de",
  "france" : "http://www.grecon.fr",
  "usa"    : "http://www.grecon.us",
  "china"  : "http://www.grecon-china.com",
  "russia" : "http://www.grecon.ru"
};


// go_to_site function - to go to the chosen website
function go_to_site() {
  var chooser = document.getElementById("site_chooser");
  var country = chooser.value;
  if(country != "default") {
    window.location = sites[country];
  }
}


///////////////////////////////////////////////////////////////////////////////
//  End of links.js.
///////////////////////////////////////////////////////////////////////////////
