function buscarParrafos(){
	if (document.buscador.aBuscar.value!=""){
		document.buscador.submit();
	}
	else{
		alert("Debe introducir un texto a buscar");
	}
}

