var OP = (window.opera) ? 1 : 0;
var IE = (!OP && (document.all || window.navigator.userAgent.toLowerCase().indexOf('msie') != -1)) ? 1 : 0;
var NS4 = (document.layers) ? 1 : 0; 
var DOM = (document.getElementById && !IE) ? 1 : 0;

function startUp() {
    PICount = 0;
//    Blink_init();
    Scroller_init();
}

function Scroller_init() { 
    scrollCounter = 0; 
    scrollDelay = 80; 
    scrollText = scrollText.replace(/&amp;/, "&");
    i = 0; 
    while (i ++ < 140) {
        scrollText = " " + scrollText;
    }
//    window.setTimeout("Scroller()", 0);
} 

function Scroller() { 
    window.status = scrollText.substring(scrollCounter++, scrollText.length); 
    if (scrollCounter == scrollText.length) {
        scrollCounter = 0;
    }
    window.setTimeout("Scroller()", scrollDelay); 
} 

function Blink_init() {
    blinker = document.getElementById('blinky');
    if (blinker) {
        blinker.style.display = "inline";
        window.setTimeout("Blink()",450);
    }
}

function Blink() {
    x = (Math.round(Math.random() * 62));
    y = (Math.round(Math.random() * 47));
    blinker.style.top = y + "px";
    blinker.style.left = x + "px";
    window.setTimeout("Blink()", 450);
}

