function changetoenpage (currentpath)
{
var oldlocation;
var newlocation;
var templocation;

oldlocation = currentpath;
templocation = oldlocation.replace("FR", "EN");
newlocation = templocation.replace("_f", "_e");
//alert(newlocation); //used for debugging
 return (newlocation);
}

