function JSObj_change_language_box()
{ 
	this.useCookie = null;

	// cambia el idioma
	this.changeLng = function(lng_id, Url) {
		var oAjax = new WBE_AjaxClass();
		oAjax.clear();
		if (this.useCookie!=null)
			oAjax.addPostParameter('cookie', "1");
		oAjax.addPostParameter('lng', lng_id);
		oAjax.throwEvent2('wbe_i18n_change_lang');
		
		/*if (Url==null||Url=='') document.location.reload();
		else window.location.href=Url;*/
		
		//pasar parámetro para que al recargar la página en el idioma previo no vuelva atrás el cambio de idioma
		if (Url == null || Url == '') 
			Url = window.location.href;			
		Url = Url + ((Url.indexOf('?') == -1) ? '?' : '&');		
	
		Url = Url + "redirect_lng=" + lng_id + "&resource_code=" + resource_code;
			
		window.location.href = Url;
	};
}
