
   function switchUSESLocale() {

      var current_url = top.location.href;
      var current_url_sections = current_url.split('/');
      var new_url="";

      current_url_sections[5] = "USES";
	  current_url_sections[6] = "HomePage.cvsp";

      for(i = 3; i < current_url_sections.length; i++) {
         if(i < (current_url_sections.length - 1)) {
            new_url = new_url + current_url_sections[i] + "/";
         } else {
            new_url = new_url + current_url_sections[i];
         }
      }

      window.top.location = '/app/Colgate/LocaleSwitch.srv?TargetURL=' + new_url + '&DefaultURL=' + '&addlParameters=?cid=ColgateCOMTab';

   } // end switchLocale()


