function checkSearchForm()
	{
	var sPath=document.forms[0];
	if (!sPath.elements['keyword'].value && sPath.elements['tag'].value=="")
		{
		alert('Inserisci una parola chiave o seleziona un valore negli altri campi.');
		}
	else sPath.submit();
	}