function checkKeyword() {
	var field = window.document.ricerca.keyword;
	if (field.value == "") {
		alert('Inserisci la tua PASSWORD!');
		field.focus();
		return (false);
	} else if (field.value.length < 4) {
		alert('La PASSWORD deve essere costituita da almeno 4 caratteri!');
		field.focus();
		return (false);
	} else {
		return (true);
	}
}

function rolloverCat(obj) {
	obj.style.backgroundColor = '#EEEEEE';
}

function rolloutCat(obj) {
	obj.style.backgroundColor = '';
}