

/************************************************************************************/
//Funzioni ajax
/************************************************************************************/

   /*
   es link: index.php?  mod=ajax_calendario&op=nextPrevMonth&month=5&year=2009&gg=1&mm=5&yy=2009
   m = mese / a=anno
   */   
   
   
   function goToMonth(link,m,a){
       
       $("#calendar_wrap").html("<img src='img/ajax/ajax-loader-big.gif' align='center'><br />caricamento dati calendario in corso..");
      
       $.ajax({
               type: "get",
               url: "index.php",
               data: link,
               success: function(msg){
                 //alert( "Data Saved: " + msg );
                 $("#calendar_wrap").html(msg);
      
               }
             });
         
          return false;
       
   }
   
   
  
   