var img_color = 0;
	
function search_book()
{		
	if ((document.searchForm.tit.value == "") && 
			(document.searchForm.aut.value == "") && 
			(document.searchForm.edi.value == "") && 
			(document.searchForm.luo.value == "") && 
			(document.searchForm.sog.value == "") && 
			(document.searchForm.nat.value == "") && 
			(document.searchForm.mat.value == -1
			))
	{
		alert("Inserire almeno un elemento di ricerca valido.");
		return;			
	}
	else
	{
		var test;
		test = false;
		test = test || testForm (document.searchForm.tit.value);
		test = test || testForm (document.searchForm.aut.value);
		test = test || testForm (document.searchForm.edi.value);
		test = test || testForm (document.searchForm.luo.value);
		test = test || testForm (document.searchForm.sog.value);
		test = test || (document.searchForm.mat.value != -1);
		test = test || (document.searchForm.nat.value != "");
				
		if (test)
		{
			var codex = 0;
					
			if (document.searchForm.tit.value != "")
				codex = codex + 1;

			if (document.searchForm.aut.value != "")
				codex = codex + 2;

			if (document.searchForm.edi.value != "")
				codex = codex + 4;

			if (document.searchForm.luo.value != "")
				codex = codex + 8;
									
			if (document.searchForm.sog.value != "")
				codex = codex + 16;

			if (codex > 0)
			{
				document.searchForm.codex.value = codex;
			
				window.document.searchForm.submit();
			}
			else
			{
				alert("I criteri Materiale e Natura possono essere utilizzati solo come filtri in aggiunta ad almeno un altro criterio di ricerca.");
				return;
			}
		}
		else
		{
			alert("Inserire almeno un elemento di ricerca valido.");
			return;
		}
	}
}
