function SelectLanguage(select,da,dl)
{
  if (select.selectedIndex!=0)
  {
    tl=select.options[select.selectedIndex].value;
    if (tl==dl) window.location.replace(da);
    else window.location.replace("http://translate.google.com/translate?u="+da+"&hl="+tl+"&sl=en&tl="+tl);
  }
}

