<html><head>
<script type="text/javascript">
var step=0, _admin=true; // 后台输出是否有新信息数据
if (_admin){flash_title();}
function flash_title()
{
step++;
if (step==1) {document.title =' ';}
if (step==2) {
document.title='新信息';
step=0;
}
setTimeout("flash_title()",500);
}
</script>
</head>
<body>标题闪烁效果</body>
</html>