
	function noticia_desplegar(id_texto, abrir) {
	
		var data = "id_texto=" + id_texto + "&abrir=" + abrir;
		
		
		$.ajax({
		    url: "ajax.php?objeto=noticia&funcion=desplegar",
		    data: data,
		    type: 'GET',
		    success: respuesta
		    
		});
		
		
		function respuesta(msg) {
			$('#texto_' + id_texto).html(msg);
		}
		
	} 
	