1
<SCRIPT language=JavaScript>
2
<!-- 标题闪动
3
step=0
4
function flash_title()
5

{
6
step++
7
if (step==3)
{step=1}
8
if (step==1)
{document.title="..::>>>>>>>>>>>>>>>>::.."}
9
if (step==2)
{document.title="..::<<<<<<<<<<<<<<<<::.."}
10
setTimeout("flash_title()",500); //刷新时间
11
}
12
flash_title()
13
//-->
14
</SCRIPT>

2

3

4

5



6

7



8



9



10

11

12

13

14
