function find_tourplan(year,month){
jQuery.ajax({
  url: "/system/tourplan_calendar.php?y="+year+"&m="+month,
  method:"GET",
  beforeSend:function(){
	  jQuery('#tourplan_calendar').html('<img alt="Loading..." src="/system/layout/images/ajax_loader.gif" />');
	  },
  success: function(responseText){  	
	responseText=jQuery.trim(responseText);
	jQuery('#tourplan_calendar').html(responseText);
  }
});
		
		/*var ajax = new Ajax.Request('/system/tourplan_calendar.php?y='+year+'&m='+month, {
				method: 'get',
				onSuccess: function(transport) {
					var result = $('tourplan_calendar');
					result.update(transport.responseText);
				}
			});
			*/
	return false;
}
