function checkKeyword() {
	var field = window.document.ricerca.keyword;
	if (field.value == "") {
		//alert('Inserire la parola chiave!');
		alert('Insert the Keyword!');
		field.focus();
		return (false);
	} else if (field.value.length < 4) {
		//alert('La parola chiave deve essere costituita da almeno 4 caratteri!');
		alert('The Keyword is too short!');
		field.focus();
		return (false);
	} else {
		return (true);
	}
}

function rolloverCat(obj) {
	obj.style.backgroundColor = '#EEEEEE';
}

function rolloutCat(obj) {
	obj.style.backgroundColor = '';
}
