﻿function SetLanguage(obj) {
    /*
    alert(obj);
    alert(obj.selectedIndex);
    alert(obj.options);
    alert(obj.options[obj.selectedIndex]);
    alert(obj.options[obj.selectedIndex].value);
    */
    var lan ='';
  
    if (navigator.userAgent.indexOf("Firefox")!=-1){
        lan = obj.options[obj.selectedIndex].value;
    }
    else if (navigator.userAgent.indexOf("MSIE")!=-1){
       lan = obj.options(obj.selectedIndex).value;
    }else
        lan = obj.options(obj.selectedIndex).value;
    
    window.location.href = "../Default.aspx?LN=" + lan;
}
