//=============== ULTITA' GENERALI
function OpenInsertComment(iddiv){
    if (document.getElementById(iddiv).style.display=="block") document.getElementById(iddiv).style.display="none";
    else document.getElementById(iddiv).style.display="block";       
}

//=============== ARCHIVIO ARTICOLI

   function FiltroFormArticoli(context){

       titolo_testo= document.getElementById('articolo_input_titolo_testo');
       if(titolo_testo.value=='') document.getElementById('titolo_testo').value='({s:'+context+',unset})';
       else document.getElementById('titolo_testo').value='({s:'+context+','+titolo_testo.value+'})';

       return true;  
   }

   function ResetArticoliFormArticoli(context){

       document.getElementById('titolo_testo').value='({s:'+context+',unset})';
      
       return true;  
   }


function impacchetta_dati_articolo(){
   items = $("input[name='rubrica']");
   ok_rubriche = new Array();

   for (i=0; i < items.length; i++){
       if (items[i].checked) {
          ok_rubriche[i] = [items[i].id];
       }
   }
   if (ok_rubriche.length==0) { 
       alert("Registrazione interrotta: Nessuna Rubrica Impostata!"); 
       return false
   };

   $('input#rubriche').attr("value",$.toJSON(ok_rubriche));

   return true;
}

//==================== SHOW MINI ARTICOLI
 function submit_select_rubrica(context){

       rubrica_id= document.getElementById('form_select_rubrica').rubrica_id;
       select_rubrica_value= document.getElementById('select_rubrica').value;
       rubrica_id.value='({s:'+context+','+select_rubrica_value+'})';

       return true;  
   }

 function select_rubrica(context, rid){
       rubrica_id = document.getElementById('form_select_rubrica').rubrica_id;
       rubrica_id.value='({s:'+context+','+rid+'})';
       return true;  
   }

 function submit_select_speciale(context){

       rubrica_id= document.getElementById('form_select_speciale').rubrica_id;
       select_speciale_value= document.getElementById('select_speciale').value;
       rubrica_id.value='({s:'+context+','+select_speciale_value+'})';

       return true;  
   }

 function submit_select_territorio(context){

       territorio_id= document.getElementById('territorio_id');
       select_territorio_value= document.getElementById('select_territorio').value;
       territorio_id.value='({s:'+context+','+select_territorio_value+'})';

       return true;  
   }

function abilitahtml(obj){
   var toolbars = document.getElementsByTagName("tr");
   if (obj.checked==true){
       for (i=0;i<toolbars.length;i++) {if (toolbars[i].className=="toolbar") toolbars[i].style.display ="none";}
    }else{
           for (i=0;i<toolbars.length;i++) {if (toolbars[i].className=="toolbar") toolbars[i].style.display ="";}
       }
}
