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;
	};
}

