function frissit(year,month)
 {
  
   new Ajax.Updater('esemenyek', 'getCalendar.php?year='+year+'&month='+month, {
    
        onSuccess: function (transport) {
            if(transport.responseText)
            {
               ;
            }
			else
               ;
        }
    });
   	
 }