//网站全程策划设计：李银刚 QQ：270889555
//窗口最大化开始
self.moveTo(0,0)
self.resizeTo(screen.availWidth,screen.availHeight)
//窗口最大化结束
//****************************************************************************************************************
//标题栏动态文字效果开始
step=0;
function flash_title(){
      step++;
      if (step==3) {step=1}
      if (step==1) {document.title='★☆★ ＾○＾　他她购物网---他她时代　靓出真我风采　＾○＾ ★☆★'}
      if (step==2) {document.title='☆★☆ ＾◎＾　他她购物网---他她时代　靓出真我风采　＾◎＾ ☆★☆'}
      setTimeout("flash_title()",200);
    }
flash_title();
//标题栏动态文字效果结束
//****************************************************************************************************************
//状态栏动态文字效果开始
<!-- Hide this script from old browsers --
var speed = 10 
var pause = 2500 
var timerID = null
var bannerRunning = false
var ar = new Array()
ar[0] = "          ★☆★ ＾○＾　欢迎您进入他她购物网　＾○＾ ★☆★"
ar[1] = "          ★☆★ ＾○＾　他她时代　靓出真我风采　＾○＾ ★☆★"
ar[2] = "          ★☆★ ＾○＾　他她购物网让您的生活更精彩　＾○＾ ★☆★"
ar[3] = "          ★☆★ ＾○＾　网站全程策划设计：李银刚　业务咨询：李银刚　＾○＾ ★☆★"
var message = 0
var state = ""
clearState()
function stopBanner() {
        if (bannerRunning)
                clearTimeout(timerID)
        bannerRunning = false
}

function startBanner() {
        stopBanner()
        showBanner()
}
function clearState() {
        state = ""
        for (var i = 0; i < ar[message].length; ++i) {
                state += "0"
        }
}
function showBanner() {
        if (getString()) {
                message++
                if (ar.length <= message)
                        message = 0
                clearState()
                timerID = setTimeout("showBanner()", pause)
                bannerRunning = true
        } else {
                var str = ""
                for (var j = 0; j < state.length; ++j) {
                        str += (state.charAt(j) == "1") ? ar[message].charAt(j) : "     "
                }
                window.status = str
                timerID = setTimeout("showBanner()", speed)
                bannerRunning = true
        }
}
function getString() {
        var full = true
        for (var j = 0; j < state.length; ++j) {
                if (state.charAt(j) == 0)
                        full = false
        }
        if (full)
                return true
        while (1) {
                var num = getRandom(ar[message].length)
                if (state.charAt(num) == "0")
                        break
        }
        state = state.substring(0, num) + "1" + state.substring(num + 1, state.length)
        return false
}
function getRandom(max) {
        return Math.round((max - 1) * Math.random())
}
//状态栏动态文字效果结束
//****************************************************************************************************************
//双击鼠标滚动屏幕效果开始
var currentpos,timer;
function initialize()
{
timer=setInterval ("scrollwindow ()",30);
}
function sc()
{
clearInterval(timer);
}
function scrollwindow()
{
currentpos=document.body.scrollTop;
window.scroll(0,++currentpos);
if (currentpos !=document.body.scrollTop)
sc();
}
document.onmousedown=sc
document.ondblclick=initialize
//双击鼠标滚动屏幕效果结束
//****************************************************************************************************************








