/************************************************************************************/
//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='js/ajaxtabs/ajax-loader-big.gif' width='66' height='66' style='margin-top: 80px;' 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;
	   
   }