function checkCampiObbligatori(form) {

	if (Trim(form.txtNome.value)=="") {
		alert("Nome: campo obbligatorio.");
		form.txtNome.focus();    
		return false;
	} 
	
	if (Trim(form.conceptRTEvalue.value)=="") {
		alert("Commento: campo obbligatorio.");
		return false;
	} 
	
	if (confirm("Sicuro di voler procedere con l'inserimento del commento?")) {
		return true;
	} 
	else {
		return false;
	}
}
