function getCookieVal (offset) {  
        var endstr = document.cookie.indexOf (";", offset);  
        if (endstr == -1)    
          endstr = document.cookie.length;  
        return unescape(document.cookie.substring(offset, endstr));
      }
      
      function GetCookie (name) {  
        var arg = name + "=";  
        var alen = arg.length;  
        var clen = document.cookie.length;  
        var i = 0;  

        while (i < clen) {    
          var j = i + alen;    
          if (document.cookie.substring(i, j) == arg)
          {
            return getCookieVal (j);    
          }
          i = document.cookie.indexOf(" ", i) + 1;    
          if (i == 0) break;   
        }  
        return null;
      }

      var defCountry = GetCookie("defaultCountry");
    
      function getCountry(){        
        if (defCountry == "CA"){
          window.location.href = "Default.aspx";
        }
        if (defCountry == "US"){
          window.location.href = "us/Default.aspx";
        }
      }

      function setCountry(strCountryCode){
	      var datToday = new Date();
	      var datExpiry = new Date(datToday.getTime() + 365 * 24 * 60 * 60 * 1000);

        document.cookie = "defaultCountry=" + strCountryCode + "; expires=" + datExpiry.toGMTString() + "; path=/;";
        
        if (strCountryCode == "CA"){
          window.location.href = "Default.aspx";
        }
        if (strCountryCode == "US"){
          window.location.href = "us/Default.aspx";
        }
      }