<!--

// The JavaScript function sets the position of the div 
// element using its style.left property. Note the addition of "px". 
// This is very important for correct functioning in some browsers. 
// If the text hasn't reached the right edge, it increments the position. 
// Finally a delay is built in using the system setTimeout() method 
// to allow reading the message. Without the delay the text would blur 
// across the screen. The JavaScript code is placed in the head section.

spot=0;     // global state memory for position
function move() {
styleObj=document.getElementById('flyer').style;


if (spot < 32) {    // check if at right stop point
    spot+=2;               // no - so move over a bit
    styleObj.left =parseInt(styleObj.left)- spot; // redisplay at new site
    setTimeout('move()',50); // but first wait 50 milliseconds
    
    } 
}
//-->
