// Switch Language //

var domain = "http://www.greenfun.org.hk/"
var thisurl;

thisurl = document.URL.substring(domain.length + 3);

function langSwitch(language)
{
  if (language == "chi") document.location.href = domain + "chi" + thisurl;
  else if (language == "eng") document.location.href = domain + "eng" + thisurl;
  else if (language == "chs") document.location.href = domain + "chs" + thisurl;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
