function changemonth(mon,year){
	if(mon=="0") mon=-1;
	var data_set = { Sys_Action:'calendar',month:mon,year:year} ;
	$.post( 'calendar.php' , data_set , 
			function(resp){	
					$("#showmonth").html(resp);
			  }
		);
}

function getmonthdetail(day,mon,year){
	var data_set = { Sys_Action:'datail',day:day,month:mon,year:year} ;
	$.post( 'calendar.php' , data_set , 
			function(resp){	
					$("#calendardetail").html(resp);
			  }
		);
}

function clickBannerCount(id){
	var data_set = { Action:'clickbanner', id:id} ;
	$.post( 'index-do.php' , data_set , 
			function(resp){	
				//alert(resp);
			}
		);
}
