function no_spam_aut(dat_com,url_aut){

  var barra1=dat_com.indexOf('/'),
      barra2=dat_com.lastIndexOf('/'),
      punti=dat_com.indexOf(':'),
      gio=dat_com.substring(0,barra1),
      mes=dat_com.substring(barra1+1,barra2),
      ann=dat_com.substring(barra2+1,barra2+3),
      ora=dat_com.substring(punti-2,punti),
      min=dat_com.substring(punti+1,punti+3),
      tempo=(parseInt(ann,10)*100000000)+(parseInt(mes,10)*1000000)+(parseInt(gio,10)*10000)+(parseInt(ora,10)*100)+(parseInt(min,10)*1);

  for(var i=1;i<BL.length;i++){
    if((url_aut==BL[i].url)&&(tempo>=BL[i].orab)&&(tempo<=BL[i].oras)){
      checkBL=true;
      break;
    }
  }
  if(checkBL==true)
    document.write('<a class="bannato" href="'+url_aut+'" rel="nofollow">'+BL[i].nome+'</a> <a href="http://attivissimo.blogspot.com/2004/06/regole-per-i-commenti.html" rel="nofollow">(commentatore bannato)</a><span class="spam">');
  else
    document.write('<span>');
}

function no_spam_com(){
  if(checkBL==true){
    document.write('<span class="deleted-comment">Commento non accettato causa ban dell\'autore.</span><span class="spam">');
    checkBL=false;
  }
  else
    document.write('<span>');
}