
function GoHome()
{

      var url = window.location.href;
      var pos=url.indexOf("/no/");
      
      if (pos < 0) 
	pos = url.indexOf("/NO/");
      if (pos>=0) 
        window.location = "/no";
      else {
        var pos=url.indexOf("/en/");
        if (pos < 0) pos = url.indexOf("/EN/");
        if (pos>=0)
            window.location = "/en";
        else {
            var pos=url.indexOf("/se/");
            if (pos < 0) 
               pos = url.indexOf("/SE/");
            if (pos>=0)
                window.location = "/se";
            window.location = "/";
        }

      }
}
                
function GoSearch() 
{
    var searchValue = document.getElementById('searchfield').value;
    var url = window.location.href;
      
    var pos=url.indexOf("/no/");
    if (pos < 0) 
	pos = url.indexOf("/NO/");
    if (pos>=0)
    {
        window.location = "/no/searchcenter/results.aspx?k=" + searchValue;
    } else  {

       var pos=url.indexOf("/se/");
       if (pos < 0) 
	  pos = url.indexOf("/SE/");

       if (pos>=0)
       {
           window.location = "/se/searchcenter/results.aspx?k=" + searchValue;
       } else  
       {
          var pos=url.indexOf("/dk/");
          if (pos < 0) 
	     pos = url.indexOf("/DK/");

          if (pos>=0)
          {
              window.location = "/dk/searchcenter/results.aspx?k=" + searchValue;
          } else  
          {
              window.location = "/en/searchcenter/results.aspx?k=" + searchValue;
          }
       }
    }
}		    

