
msg = ""; 
timerID = 10;          
function Flash2()  
{ 
ct = new Date();           
h = "0"+ct.getHours();          
m = "0"+ct.getMinutes(); 
s = "0"+ct.getSeconds(); 
h = h.substring(h.length-2,h.length+1);  
m = m.substring(m.length-2,m.length+1);
s = s.substring(s.length-2,s.length+1);
cl = "現在時刻【"+h+"時"+m+"分"+s+"秒】 TW520台灣我愛你聊天網 http://tw520.idv.tw";
f = ct.getSeconds() & 1;
f == 0 ? str = " " : str = msg; 
status = cl+str;
clearTimeout(timerID);
timerID = setTimeout("Flash2()",100);     
} 
//