//    Script Editor:   Howard Chen
//    Browser Compatible for the script: IE 2.0 or Higher
//                                       Netscape 2.0 or Higher
//    This script is free as long as you keep its credits
var i = 0
var showString=
" Exam 1 will be given Wednesday, February 15.   "
+ " "
                
               
    
function marquee()
{
var stringLength= showString.length
document.show.marquee1.value= document.show.marquee1.value +
showString.charAt(i)
i++
var timeID= setTimeout("marquee()",70)
if (i >= stringLength)
    {clearTimeout(timeID); i=0}

if (i >= stringLength)
 {clearTimeout(timeID); i=0}
}


