function enlaces() {};

enlaces.ver_enlaces = function(accion) {
	cadena = "./base/index.php?controlador=enlaces&accion="+accion;
	$.ajax({
		url: cadena,
		type: "POST",
		cache: false,
		error: function (xhr, ajaxOptions, thrownError){
			if (xhr.status == 403)  alert("Error del servidor");
			return;
        } ,
		success: function(html){
			$("#contenedor_enlaces").html(html);
	 	}
	});
}




