<script>functionsecondToDate(second){if(!second){return0;}vartime=newArray(0,0,0,0,0);if(second>=365*24*3600){time[0]=parseInt(second/(365*24*3600));second%=365*24*3600;}if(second>=24*3600){time[1]=parseInt(second/(24*3600));second%=24*3600;}if(second>=3600){time[2]=parseInt(second/3600);second%=3600;}if(second>=60){time[3]=parseInt(second/60);second%=60;}if(second>0){time[4]=second;}returntime;}</script><scripttype="text/javascript"language="javascript">functionsetTime(){varcreate_time=Math.round(newDate(Date.UTC(2021,11,06,14,15,19)).getTime()/1000);vartimestamp=Math.round((newDate().getTime()+8*60*60*1000)/1000);currentTime=secondToDate((timestamp-create_time));currentTimeHtml='This Blog has running: <br/>'+currentTime[0]+' y '+currentTime[1]+' d '+currentTime[2]+' h '+currentTime[3]+' m '+currentTime[4]+' s';document.getElementById("htmer_time").innerHTML=currentTimeHtml;}setInterval(setTime,1000);</script>