﻿function chg_lang(id, page){
   $.ajax({
				url: "chg_lang.php",
				data: "id=" + id,
				dataType: "json",
				async: false,
				error: function(objeto1, descr_error, objeto2){
					alert("Error: "+ descr_error);
				},
				success: function(datos){
					window.location=page;
				},
				type: "POST"
			}); //fin ajax.
    return;
}
