﻿//防止框架
if (top.location != location) top.location.href = location.href;
//最大化
self.moveTo(0,0);
self.resizeTo(screen.availWidth,screen.availHeight);
//状态栏文字
var text  = "ＷＷＷ.１８ＤＤＤ.ＣＯＭ"   
var speed = 100   
var x = 0   
function bb() {   
var a = text.substring(0,x)   
var b = text.substring(x,x+1).toUpperCase()   
var c = text.substring(x+1,text.length)   
window.status = a + b + c   
if (x == text.length) {   
x = 0   
}   
else {   
x++   
}   
setTimeout("bb()",speed)   
}   
bb();   
// -->