<!-- 
var horiz=10;
var vert=550;  
var ns4=document.layers?1:0
var ie=document.all?1:0
var ns6=document.getElementById&&!document.all?1:0

function moveit()
{
if(ie){
slide.style.left=horiz;
slide.style.top=vert+document.body.scrollTop;
}
else if (ns4){
document.slide.pageX=horiz;
document.slide.pageY=vert+window.pageYOffset;
}
else if (ns6){
document.getElementById("slide").style.left=horiz
document.getElementById("slide").style.top=vert+window.pageYOffset
}}
function doit()
{
if(ns4)
document.slide.visibility="visible";
loop();
}
function loop()
{
moveit();
setTimeout('loop()',10);
}
if (ie||ns4||ns6)
window.onload=doit

// End of the code -->