

// changement de langue ---------------------------------------------------------------------------------------------------------
function change_langue(country_code)
	{
	var chp_country_code = document.createElement("input");					
	chp_country_code.setAttribute("type","hidden" );
	chp_country_code.setAttribute("value",country_code);
	
	$(document).ready(function ()
		{
		$.post("inc/lng/ajax/ajax_other_lng.php", 
			{
			return_country_code: chp_country_code.value
			},
		function success(data)
			{
			// alert(data);
			
			history.go(0);
			});
		});
	}
// ------------------------------------------------------------------------------------------------------------------------------



