<html>
<head>
<script language="JavaScript1.2" fptype="dynamicanimation" src="animate.js">
</script>
<title>Minibrowser</title>
</head>
<style>
.spanstyle {
        position:absolute;
        visibility:visible;
        top:-50px;
        font-size:10pt;
        font-family:Arial bold;
      font-weight:bold;
        color:orange;
}
</style>
<script language="Javascript1.2">
var x,y
var step=15
var flag=0

 
var message="*****SLEEK*****"
message=message.split("")

var xpos=new Array()
for (i=0;i<=message.length-1;i++) {
        xpos[i]=-67
}

var ypos=new Array()
for (i=0;i<=message.length-1;i++) {
        ypos[i]=-60
}

function handlerMM(e){
        x = (document.layers) ? e.pageX : document.body.scrollLeft+event.clientX
        y = (document.layers) ? e.pageY : document.body.scrollTop+event.clientY
        flag=1
}

function makesnake() {
        if (flag==1 && document.all) {
        for (i=message.length-1; i>=1; i--) {
                        xpos[i]=xpos[i-1]+step
                        ypos[i]=ypos[i-1]
        }
                xpos[0]=x+step
                ypos[0]=y
        
                for (i=0; i<message.length-1; i++) {
                var thisspan = eval("span"+(i)+".style")
                thisspan.posLeft=xpos[i]
                        thisspan.posTop=ypos[i]
        }
        }
        
        else if (flag==1 && document.layers) {
        for (i=message.length-1; i>=1; i--) {
                        xpos[i]=xpos[i-1]+step
                        ypos[i]=ypos[i-1]
        }
                xpos[0]=x+step
                ypos[0]=y
        
                for (i=0; i<message.length-4; i++) {
                var thisspan = eval("document.span"+i)
                thisspan.left=xpos[i]
                        thisspan.top=ypos[i]
        }
        }
                var timer=setTimeout("makesnake()",10)
}

</script>
<body bgcolor="#000000" marginheight="0" topmargin="0"
onLoad="makesnake()" style="width:100%;overflow-x:hidden;overflow-y:scroll" l
>
<script language="Javascript1.2">
<!-- Beginning of JavaScript -

for (i=0;i<=message.length-1;i++) {
    document.write("<span id='span"+i+"' class='spanstyle'>")
        document.write(message[i])
    document.write("</span>")
}

if (document.layers){
        document.captureEvents(Event.MOUSEMOVE);
}
document.onmousemove = handlerMM;

// - End of JavaScript - -->
</script>

<body bgcolor="#505050" onload="dynAnimation()" text="#E8740C" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" scroll="no" link="#006699" vlink="#990033" alink="#006699" text="orange">
<img src="MBINNER.BMP" width="256" height="58">
</body>
</html>

