function validacommento(id) {
     // Variabili associate ai campi del modulo
	 document.getElementById('errorecommento').style.visibility = "Hidden";
	 document.getElementById('erroretitolo').style.visibility = "Hidden";
	 
     var titolocommento = trim(document.commenti.titolocommento.value);
     var commmento = trim(document.commenti.commento.value);
	 var indirizzo = document.location.href;
	 

	 indirizzo=indirizzo.replace("&inserisci=true","");

	 var flag=0;
	 
        if ((titolocommento == "") || (titolocommento == "undefined")) {
		   document.getElementById('erroretitolo').style.visibility = "visible";
           flag=1;
        }
		
		if ((commmento == "") || (commmento == "undefined")) {
		   document.getElementById('errorecommento').style.visibility = "visible";
           flag=1;
        }

	
	   if (flag==0) {
		   document.commenti.action = indirizzo+"&inserisci=true";
           document.commenti.submit();
		   
        }
		return false;
  }

  
  //**************** INIZIO: TRIM  STRINGA  ******************	
	function trim(str){
        return str.replace(/^\s+|\s+$/g,"");
    } 
	
  //**************** FINE: TRIM  STRINGA    ******************	
  

