function mostrar_novedades() {
	peticion_ajax ('mostrar_novedades.php', null, 'contenedor_eventos');
}
function ver_noticia (id_noticia) {
	location.href='noticia.php?id='+id_noticia;	
}
function ver_evento (id_evento) {
	location.href='evento.php?id='+id_evento;	
}
function try_busqueda (form) {
	if (form.texto.value == '') {
		alert("Debe indicar algún texto para realizar la búsqueda.");
		return false;
	}
	return true;
}