
//Specify the marquee's width (in pixels)
var marqueewidth="144px"
//Specify the marquee's height
var marqueeheight="145px"
var marqueeheight2="145px"
//Specify the marquee's marquee speed (larger is faster 1-10)
var marqueespeed=1
//Pause marquee onMousever (0=no. 1=yes)?
var pauseit=1

//Specify the marquee's content
//Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):

////NO NEED TO EDIT BELOW THIS LINE////////////

marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NS
var copyspeed=marqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var iedom=document.all||document.getElementById
var actualheight=''
var cross_marquee, ns_marquee,cross_marquee2,ns_marquee2
function populate(){
if (iedom){
cross_marquee=document.getElementById? document.getElementById("iemarquee1") : document.all.iemarquee1
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
cross_marquee.innerHTML=marqueecontent1
actualheight1=cross_marquee.offsetHeight

cross_marquee2=document.getElementById? document.getElementById("iemarquee2") : document.all.iemarquee2
cross_marquee2.style.top=parseInt(marqueeheight2)+8+"px"
cross_marquee2.innerHTML=marqueecontent2
actualheight2=cross_marquee2.offsetHeight
}
else if (document.layers){
ns_marquee=document.ns_marquee1.document.ns_marquee12
ns_marquee.top=parseInt(marqueeheight)+8
ns_marquee.document.write(marqueecontent1)
ns_marquee.document.close()
actualheight1=ns_marquee.document.height

ns_marquee2=document.ns_marquee2.document.ns_marquee22
ns_marquee2.top=parseInt(marqueeheight2)+8
ns_marquee2.document.write(marqueecontent2)
ns_marquee2.document.close()
actualheight2=ns_marquee2.document.height

}
lefttime=setInterval("scrollmarquee()",60)
}
//window.onload=populate

function scrollmarquee(){

if (iedom){
if (parseInt(cross_marquee.style.top)>(actualheight1*(-1)+8))
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
else
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"

if (parseInt(cross_marquee2.style.top)>(actualheight2*(-1)+8))
cross_marquee2.style.top=parseInt(cross_marquee2.style.top)-copyspeed+"px"
else
cross_marquee2.style.top=parseInt(marqueeheight2)+8+"px"
}
else if (document.layers){
if (ns_marquee.top>(actualheight1*(-1)+8))
ns_marquee.top-=copyspeed
else
ns_marquee.top=parseInt(marqueeheight)+8

if (ns_marquee2.top>(actualheight2*(-1)+8))
ns_marquee2.top-=copyspeed
else
ns_marquee2.top=parseInt(marqueeheight2)+8
}
}