function busRapida()
{
	var form = document.formBusRapida;
		
	if (form.palabrasBusqueda.value=="")	
	{
		alert("Introduce las palabras de búsqueda");
		form.palabrasBusqueda.focus();
		return false;
	}
	
	if (form.tipoBus.selectedIndex < 0)
	{
		alert("Elige el campo de búsqueda");
		form.tipoBus.focus();
		return false;
	}
	
	return true;
}

function abre_ventana(elemento, ancho, alto, scroll)
{
	var ventana=window.open(elemento.href, "_blank", "width="+ancho+"px, height="+alto+"px, scrollbars="+scroll);
	return ventana==undefined;
}
