document.write('<img src="/images/timer2/na.gif" name="p1" style="padding-left:1px;" /><img src="/images/timer2/na.gif" name="p2" />');document.write('<img src="/images/timer2/dot.gif" name="p7" /><img src="/images/timer2/na.gif"name="p3" style="padding-left:1px;" /><img src="/images/timer2/na.gif" name="p4" />');document.write('<img src="/images/timer2/dot.gif" name="p8" /><img src="/images/timer2/na.gif" name="p5" style="padding-left:1px;" /><img src="/images/timer2/na.gif" name="p6" />');function ctime2(){	data = new Date();	hour = data.getHours();	hour2 = hour % 10;	hour1 = (hour-hour2) / 10 ;	mine = data.getMinutes();	mine2 = mine % 10;	mine1 = (mine - mine2) / 10;	sec = data.getSeconds();	sec2 = sec % 10;	sec1 = (sec - sec2) / 10;	document.p1.src = "/images/timer2/" + hour1 + ".gif";	document.p2.src = "/images/timer2/" + hour2 + ".gif";	document.p3.src = "/images/timer2/" + mine1 + ".gif";	document.p4.src = "/images/timer2/" + mine2 + ".gif";	document.p5.src = "/images/timer2/" + sec1 + ".gif";	document.p6.src = "/images/timer2/" + sec2 + ".gif";	document.p7.src = "/images/timer2/dot.gif";	document.p8.src = "/images/timer2/dot.gif";}setInterval("ctime2()",1000);
