function reply(id){
	$(".replyNum").val(id);
	
}

function showCountdown(type){ 
		var display = "";
		remanenttime-=1;
		if(remanenttime == 9600) {
			window.location=window.location;
		}
		minutes = remanenttime /60; 
		mnum = Math.floor(minutes); 
		if(String(mnum).length ==1 ){mnum = "0" + mnum;} 
		seconds = remanenttime  - (60 * mnum); 
		snum = Math.round(seconds); 
		if(String(snum).length ==1 ){snum = "0" + snum;} 
		if(type == "" || type == "seconds"){
		display = mnum + "分钟" + snum+"秒";
		}else{
		display = mnum + "分钟";	
		}
		$(".remanenttime").html(display); 
		if(remanenttime <=0) location.reload();
	} 

