function gotoURL(by,bylang) {
     var langIndex = document.direct[bylang].selectedIndex;
     var lang = document.direct[bylang].options[langIndex].value;
     var Current = document.direct[by].selectedIndex;
     location.href = document.direct[by].options[Current].value + "?language=" + lang;
     return false;
 }

function gotoURLHome(by) {
     var Current = document.direct[by].selectedIndex;
     location.href = document.direct[by].options[Current].value;
     return false;
 }