//New PM Flasher - By Markup 
// Redistributed for Vn communities by all4elva.com 
userLinks=document.getElementById('userlinks'); 
if(userLinks.innerHTML.match("Inbox")) 
{ 
newMsg=false; 
a=userLinks.getElementsByTagName("A"); 
for(i=0;i<a.length;i++)if(a[i].innerHTML.match(/Inbox\s\([0-9]+\)/)&&a[i].innerHTML.match(/[0-9]+/)>0)newMsg=i; 
if(newMsg) 
{ 
inbox=a[newMsg]; 
inbox.style.fontWeight="Bold"; 
//Ch?n m¨¤u m¨¤ b?n mu?n 
inbox.style.color="Green"; 
flash(); 
} 
} 
function flash() 
{ 
if(inbox.style.visibility=="hidden")inbox.style.visibility="visible"; 
else inbox.style.visibility="hidden"; 
setTimeout("flash()",500) 
} 
 