var d=document;

function ricerca()
{
  d.getElementById('searchBox').style.display='block';
}

function cerca()
{
  if(d.getElementById('qRicerca').value!='')
  {
    if(d.getElementById('tRicercaR').checked)
      {d.location='/ricette/ricerca/'+escape(d.getElementById('qRicerca').value)+'/';}
    else
      {d.location='/ingredienti/ricerca/'+escape(d.getElementById('qRicerca').value)+'/';}
  }
}