function f_buscar()
{
	var formu = document.formulario;
	if (formu.cbocategoria.value=="0"){
		alert('Seleccione una categorķa de busqueda.');
	}else{
		//Ir a la web de la categoria
		switch(formu.cbocategoria.value)
    {
    case 'Asociaciones':
    	window.location="enlaces_asociaciones.php?cbocategoria=Asociaciones";
    	break
    case 'Elkarteak':
    	window.location="enlaces_asociacioneseu.php?cbocategoria=Elkarteak";
    	break
    case 'Entidades':
    	window.location="enlaces_entidades.php?cbocategoria=Entidades";
    	break
    case 'Erakundeak':
    	window.location="enlaces_entidadeseu.php?cbocategoria=Erakundeak";
    	break
    case 'Hospitales':
    	window.location="enlaces_hospitales.php?cbocategoria=Hospitales";
    	break
    case 'Ospitaleak':
    	window.location="enlaces_hospitaleseu.php?cbocategoria=Ospitaleak";
    	break
    case 'Instituciones':
    	window.location="enlaces_instituciones.php?cbocategoria=Instituciones";
    	break
    case 'Instituzioak':
    	window.location="enlaces_institucioneseu.php?cbocategoria=Instituzioak";
    	break
    case 'Otros':
    	window.location="enlaces_otros.php?cbocategoria=Otros";
    	break
    case 'Beste batzuk':
    	window.location="enlaces_otroseu.php?cbocategoria=Beste batzuk";
    	break
    case 'Publicaciones':
    	window.location="enlaces_publicaciones.php?cbocategoria=Publicaciones";
    	break
    case 'Argitalpenak':
    	window.location="enlaces_publicacioneseu.php?cbocategoria=Argitalpenak";
    	break
    case 'Residencias':
    	window.location="enlaces_residencias.php?cbocategoria=Residencias";
    	break    
    case 'Egoitzak':
    	window.location="enlaces_residenciaseu.php?cbocategoria=Egoitzak";
    	break    
    default:    alert("Esa categorķa no existe");         
    }
		
	}

}