function returnPage(langJ) {
	// Récupération de la page courante
	page = window.location.href;
	
	// Modification du cookie
	document.cookie='';
	textcook = "lang=";
	textcook = textcook.concat(langJ);
	textcook = textcook.concat(";expire=Thu,01-Jan-70 00:00:00 GMT;path=/");
	document.cookie=textcook;

	// Détection si page statique ou module
	var page_statique = '';
	var script = '';
	page1 = page;
	
	index = page1.lastIndexOf('/'); index++;
	if ( index > 1 ) {
		script = page1.substring(index);
		page1 = page1.substr(0, eval(index-1));
	}
	index = page1.lastIndexOf('/'); index++;
	if ( index > 1 ){
		dossier = page1.substring(index);
	}
	
	// C'est une page statique
	if ( dossier.length == 2 )	page_statique = true;
	else												page_statique = false;
	
	// Suppression de 'lg' dans le nom de la page s'il existe
	if(page.indexOf("lg",1)>1) page2 = page.substr(0,page.length-6);
	else                       page2 = page;
	
	// Si page statique
	if ( page_statique == true ){

		// Fr ---> En
		/*if ( langJ == 'en' ) {
			if ( script == 'cave-des-grands-gres-beauvoisin-costieres-nimes.php' ) 													script = 'cave-des-grands-gres-beauvoisin-costieres-nimes.php';
			if ( script == 'contact-cave-des-grands-gres-beauvoisin-costieres-nimes.php' ) 									script = 'contact-cave-des-grands-gres-beauvoisin-costieres-nimes.php';
			if ( script == 'distributeur-cave-des-grands-gres-beauvoisin-vin-costieres-nimes.php' )					script = 'distributor-cave-des-grands-gres-beauvoisin-wine-costieres-nimes.php';
			if ( script == 'distributeur-france-cave-des-grands-gres-beauvoisin-vin-costieres-nimes.php' )	script = 'distributor-france-cave-des-grands-gres-beauvoisin-wine-costieres-nimes.php';
			if ( script == 'vinification-cave-des-grands-gres-beauvoisin-costieres-nimes.php' ) 						script = 'wine-making-cave-des-grands-gres-beauvoisin-costieres-nimes.php';
			if ( script == 'vignerons-cave-des-grands-gres-beauvoisin-costieres-nimes.php' )						 		script = 'vignerons-cave-des-grands-gres-beauvoisin-costieres-nimes.php';
			if ( script == 'situation-cave-des-grands-gres-beauvoisin-costieres-nimes.php' ) 								script = 'situation-cave-des-grands-gres-beauvoisin-costieres-nimes.php';
			if ( script == 'news-cave-des-grands-gres-beauvoisin-costieres-nimes.php' ) 										script = 'news-cave-des-grands-gres-beauvoisin-costieres-nimes.php';
			if ( script == 'galerie-photo-cave-des-grands-gres-beauvoisin-costieres-nimes.php' ) 						script = 'photo-gallery-cave-des-grands-gres-beauvoisin-costieres-nimes.php';
		}*/
		
		// En ---> Fr
		/*if ( langJ == 'fr' ) {
			if ( script == 'cave-des-grands-gres-beauvoisin-costieres-nimes.php' ) 													script = 'cave-des-grands-gres-beauvoisin-costieres-nimes.php';
			if ( script == 'contact-cave-des-grands-gres-beauvoisin-costieres-nimes.php' ) 									script = 'contact-cave-des-grands-gres-beauvoisin-costieres-nimes.php';
			if ( script == 'distributor-cave-des-grands-gres-beauvoisin-wine-costieres-nimes.php' ) 				script = 'distributeur-cave-des-grands-gres-beauvoisin-vin-costieres-nimes.php';
			if ( script == 'distributor-france-cave-des-grands-gres-beauvoisin-wine-costieres-nimes.php' )	script = 'distributeur-france-cave-des-grands-gres-beauvoisin-vin-costieres-nimes.php';
			if ( script == 'wine-making-cave-des-grands-gres-beauvoisin-costieres-nimes.php' ) 							script = 'vinification-cave-des-grands-gres-beauvoisin-costieres-nimes.php';
			if ( script == 'vignerons-cave-des-grands-gres-beauvoisin-costieres-nimes.php' ) 								script = 'vignerons-cave-des-grands-gres-beauvoisin-costieres-nimes.php';
			if ( script == 'situation-cave-des-grands-gres-beauvoisin-costieres-nimes.php' ) 								script = 'situation-cave-des-grands-gres-beauvoisin-costieres-nimes.php';
			if ( script == 'news-cave-des-grands-gres-beauvoisin-costieres-nimes.php' ) 										script = 'news-cave-des-grands-gres-beauvoisin-costieres-nimes.php';
			if ( script == 'photo-gallery-cave-des-grands-gres-beauvoisin-costieres-nimes.php' ) 						script = 'galerie-photo-cave-des-grands-gres-beauvoisin-costieres-nimes.php';
		}*/

		if ( langJ == 'fr' && script == 'news-shenendo-consult.php' ){
			page_fin = '../m_news/'
		}
		else{
			page_fin = page2.substr(0, index);
			page_fin = page_fin+langJ+'/'+script;
		}
	}
	// Sinon si module
	else{
		
		// EN -> FR
		if ( langJ == 'fr' ){
			if(page2.indexOf("?",1)>1) { page_fin = page2.concat("&lg="+langJ); }
			else                       { page_fin = page2.concat("?lg="+langJ); }
		}
		// FR -> EN
		else{
			page_fin = '../en/news-shenendo-consult.php';
		}
	}

	// Redirection
	window.location.href = page_fin;
	return false;
}