/**
 *  File for general element-handling in error.jsp
 */

//---- general element-handlers --------



function goSweLang(){
  var lang="locale=sv_SE";
  var url=window.location+"";

  if(url.charAt(url.length-1)=="#"){
    url=url.substring(0,url.length-1);
  }

  if(url.indexOf("locale=en_US")!=-1){
    url = url.replace("locale=en_US","locale=sv_SE");
    document.location.href=url;
  }
  else{
    if(url.substring(url.length-4,url.length)=="html"){
       url=url+"?"+lang;
       document.location.href=url;
    }
    else{
      if(url.indexOf("locale=sv_SE")==-1){
        url=url+"&"+lang;
        document.location.href=url;
      }
    }
  }

}

function goEngLang(){
  var lang="locale=en_US";
  var url=window.location+"";

  if(url.charAt(url.length-1)=="#"){
    url=url.substring(0,url.length-1);
  }

  if(url.indexOf("locale=sv_SE")!=-1){
    url = url.replace("locale=sv_SE","locale=en_US");
    document.location.href=url;
  }
  else{
    if(url.substring(url.length-4,url.length)=="html"){
       url=url+"?"+lang;
       document.location.href=url;
    }
    else{
      if(url.indexOf("locale=en_US")==-1){
        url=url+"&"+lang;
        document.location.href=url;
      }
    }
  }
}
