// JavaScript Document
function redirige(lang)
{
avant=window.location.href;
	if(lang==0){
	apres=avant.replace(".php","_es.php");
	}else{
	apres=avant.replace("_es","");	
	}
	window.location.href=apres;
}