function scelta()
{
	if(document.form1.database[0].checked) // prodotti
	{
        window.location="/prodotti/ricerca.php?ricerca=r&keyword="+document.form1.text.value;
	}
	if(document.form1.database[1].checked) // aziende
	{
        window.location="/aziende/ricerca.php?metodo=w1&testo1="+document.form1.text.value;
	}
	return false;
}