function changetofrpage (currentpath)
{
var oldlocation;
var newlocation;
var templocation;
oldlocation = currentpath;
templocation = oldlocation.replace("/en/", "/fr/");
newlocation = templocation.replace("english", "french");
//alert(newlocation); 

 return (newlocation);
}