javascript: /*New Shout Notifier*/ /*Created By Alfa*/ var title = document.title; var temp = document.getElementById("shoutbox_frame").innerHTML; var newS = 0; var interval = null; function newShout() { if(document.getElementById("shoutbox_frame").innerHTML !== temp) { if(newS == 0) interval = setInterval(function(){flashTitle()}, 1000); temp = document.getElementById("shoutbox_frame").innerHTML; newS = 1; } setTimeout(function(){newShout()}, 500); } function flashTitle() { document.title = "__ New Shout __"; setTimeout(function(){ document.title = "-- New Shout --"; if(newS == 0) document.title = title; }, 500); } document.getElementsByTagName("html")[0].onmouseover = function() { clearInterval(interval); document.title = title; newS = 0; }; newShout();