function chkFormCommento()
{
	var fc=document.forms['formCommento'], err='';
	if(fc.commento.value.length <6){err+='.:: Fornire commento\n';}
	if(err==''){fc.submit();}else{alert(err);}
}
