

function switchLang(section)
{
	var root = {};
	root.b2b_en = "http://www.borderfree.net/en";
	root.b2c_en = "http://www.borderfree.ca/en";
	root.b2b_fr = "http://www.libres-frontieres.net/fr";	
	root.b2c_fr = "http://www.libres-frontieres.ca/fr";
	
	//alert(location.pathname.slice(3));	
      if (location.pathname.slice(3)=="/consumers/smartshopper/unsubscribe_capture.jsp"){
  	  location.href = root[section] + "/consumers/smartshopper/unsubscribe.jsp";
      } else {
  	  location.href = root[section] + location.pathname.slice(3);
      }
}