// JavaScript Document

function Lang_ChangeLanguage(newLang)
{
	var	param = "newLang="+newLang;
	
	//window.location.replace("syst/Lang/syst_Lang_Change.php?"+param);
	
	new Ajax.Request('syst/Lang/syst_Lang_Change.php', { method:'post', parameters: param ,
							onLoading: function()
							{
								//Element.show('indicatorDemandeEnregistrer');
							},
							onSuccess: function(transport)
							{
								//Element.hide('indicatorDemandeEnregistrer');
								window.location.reload();
								//window.location.replace('index.php');
							}
					 });
}

