var swidth=200
var sheight=150
var sbcolor='#FEFAD2'
var sspeed=2

var msg=''
msg='<table width=100% border=0 cellspacing=0 cellpadding=0>'+
'<tr><td class=NewsLinks width=30% valign=top>CDI Workshop in March!</td></tr>'+
'<tr><td  class=NewsHeader>Valuable training for Deaf who want to pursue CDI certification!  <a href="/register.html" target="_top"><font color="blue"><b>Register today!</b></font></a></td></tr>'+
'<tr><td height=20></td></tr>'+

'<tr><td class=NewsLinks width=30% valign=top>L.E.A.P. Forward!</td></tr>'+
'<tr><td  class=NewsHeader>Learn more about DHHSC\'s new <b>Literacy, Empowerment and Advocacy Program</b> for families with Deaf or Hard of Hearing children ages 0 to 18. <a href="javascript:PopUp(\'/docs/LEAP_flyer.pdf\')"><font color="blue"><b>Download the flyer!</b></font></a></td></tr>'+
'<tr><td height=20></td></tr>'+

'<tr><td class=NewsLinks width=30% valign=top>Contract With Us!</td></tr>'+
'<tr><td  class=NewsHeader>The next time you need a sign language interpreter, call CCSLI. We\'ll send a qualified professional! <a href="/requests.html" target="_top"><font color="blue"><b>Request an interpreter!</b></font></a></td></tr>'+
'<tr><td height=20></td></tr>'+

'<tr><td class=NewsLinks width=30% valign=top>ASL Resources</td></tr>'+
'<tr><td  class=NewsHeader>Want to learn sign language? Looking to get certified? We\'ve got some helpful online destinations. <a href="/resources.html" target="_top"><font color="blue"><b>Browse our Resources!</b></font></a></td></tr>'+
'<tr><td height=20></td></tr>'+
'</table>';

//-- begin: Scroller's Algorithm -->

var resumesspeed=sspeed
function Start(){
if (document.all) iemarquee(slider);
else if (document.getElementById)
ns6marquee(document.getElementById('slider'));
else if(document.layers)
ns4marquee(document.slider1.document.slider2);
}
function iemarquee(whichdiv){
iediv=eval(whichdiv)
iediv.style.pixelTop=sheight
iediv.innerHTML=msg
sizeup=iediv.offsetHeight
ieslide()
}
function ieslide(){
if (iediv.style.pixelTop>=sizeup*(-1)){
iediv.style.pixelTop-=sspeed
setTimeout("ieslide()",100)
}
else{
iediv.style.pixelTop=sheight
ieslide()
}
}
function ns4marquee(whichlayer){
ns4layer=eval(whichlayer)
ns4layer.top=sheight
ns4layer.document.write(msg)
ns4layer.document.close()
sizeup=ns4layer.document.height
ns4slide()
}
function ns4slide(){
if (ns4layer.top>=sizeup*(-1)){
ns4layer.top-=sspeed
setTimeout("ns4slide()",100)
}
else{
ns4layer.top=sheight
ns4slide()
}
}
function ns6marquee(whichdiv){
ns6div=eval(whichdiv)
ns6div.style.top=sheight
ns6div.innerHTML=msg
sizeup=ns6div.offsetHeight
ns6slide()
}
function ns6slide(){
if (parseInt(ns6div.style.top)>=sizeup*(-1)){
ns6div.style.top=parseInt(ns6div.style.top)-sspeed
setTimeout("ns6slide()",100)
}
else{
ns6div.style.top=sheight
ns6slide()
}
}

