function Show_LeftTime(v1,v2){
   var t1=v1.split(" ") 
   var t2=v2.split(" ") 
   var tt1=t1[0].split("-") 
   var tt2=t2[0].split("-") 
   t1=tt1[1]+"/"+tt1[2]+"/"+tt1[0]+" "+t1[1];
   t2=tt2[1]+"/"+tt2[2]+"/"+tt2[0]+" "+t2[1];
   var addm=Math.ceil((Date.parse(t2)-Date.parse(t1))/1000/60);
   var d=Math.floor(addm/60/24) 
   var h=Math.floor((addm-d*60*24)/60) 
   var m=addm-d*60*24-h*60 
   if (d!="0") document.write(d+"天");
   document.write(h+"时"+m+"分");
} 