
function changlang(lang) {
	var str=document.URL;
	var newurl="";
	(lang=="fr")? newurl=str.replace(/\/en\//,"/fr/"): newurl=str.replace(/\/fr\//,"/en/");
	 	document.location.href=newurl;
} 



      