    function cambiarMenu(id){
        document.getElementById("linkMenu"+id).style.color="#cc3300";
    }
    function cambiarMenu1(id){
        document.getElementById("linkMenu"+id).style.color="#994e37";
    }
    function buscar(){
        var tipo1="";
        var tipo2="";
        if(document.frm.chkIberico.value=="Iberico"){
            tipo1="Iberico";
        }
        if(document.frm.chkSerrano.value=="Serrano"){
            tipo2="Serrano";
        }
        id=document.frm.presentacion.selectedIndex;
        formato=document.frm.presentacion.options[id].value;
        window.Location="productos.php?buscar=1&tipo1="+tipo1+"&tipo2="+tipo2+"&formato="+formato;
    }