d = new Date();
t = d.getTime();

function displayshow(type){
	//alert("ajax.php?type="+type+"&tm="+t);
	
	var html = $.ajax({
	 url: "ajax.php?type="+type+"&tm="+t,
	 async: false   
	}).responseText; 

	document.getElementById("show").innerHTML = html;
}



function showindexpunish(){//年中的月份
	var html = $.ajax({
	 url: "tmp/punish_data/punishment.php?type=&tm="+t,
	 async: false   
	}).responseText; 
	document.getElementById("show").innerHTML = html;
}
function showmonthpunish(m){//月份中的天
	var html = $.ajax({
	 url: "tmp/punish_data/"+m+"/index.php?type=&tm="+t,
	 async: false   
	}).responseText; 

	document.getElementById("show").innerHTML = html;
}

function showdaypunish(m,d){//详细处罚信息
	var html = $.ajax({
	 url: "tmp/punish_data/"+m+"/"+d+".php?type=&tm="+t,
	 async: false   
	}).responseText; 

	document.getElementById("show").innerHTML = html;
}

