function sw(a,b){ document.getElementById(a).src = b;}

function CheckForm()  {
str = document.getElementById('ricerca').value;
if (str.length < 3)   {
alert( "Search criteria too short.\nParametro di ricerca troppo breve.");
return false;
} else {
document.alasearch.submit()
return true;
}}

function Checksub()  {
if (CheckForm())   {
document.alasearch.submit()
}}

