
/* ----- scrollers.js ----- */
// http://www.digitalmusicnews.com/portal_javascripts/scrollers.js?original=1
var marqueewidth="140px"
var marqueeheight="150px"
var marqueespeed=1
var pauseit=1
var marqueecontent='<span id="verscroller">Apple<br />AT&T<br />RIAA<br />SESAC<br />Napster<br />Best Buy<br />MySpace<br />Virgin Megastores<br />MusicNet<br />MTV<br />Microsoft<br />RealNetworks<br />Bertelsmann<br />Motorola<br />Forrester Research<br />Atlantic Records<br />Universal Music<br />EMI Music<br />Sony BMG<br />Sony Connect<br />Loudeye<br />Akamai<br />Yahoo<br />Billboard<br />Curb Records<br />Eurotel<br />DCIA<br />Ipsos-Reid<br />Creative<br />Live365.com<br />ContentGuard<br />Jupiter Research<br />Music Choice<br />BMI<br />HMV<br />BT<br />O2<br />Chrysalis<br />MSN<br />Sony Ericsson<br />Vibe Magazine<br />Gartner Research<br />Gracenote<br />Macrovision<br />INgrooves<br />VNU Media<br />Siemens<br />Streamguard<br />Ztango<br />AOL<br />Sirius Satellite Radio<br />XM Satellite Radio<br />WorldSpace<br />Motorola<br />Nokia<br />Siemens<br />Phillips<br />Sigmatel<br />Samsung<br />NYSE<br />NASDAQ<br />IODA<br />The Orchard<br />eMusic<br /></span>'
marqueespeed=(document.all)?marqueespeed:Math.max(1,marqueespeed-1)
var copyspeed=marqueespeed
var pausespeed=(pauseit==0)?copyspeed:0
var iedom=document.all||document.getElementById
var actualheight=''
var cross_marquee,ns_marquee
function populate(){try{if(iedom){cross_marquee=document.getElementById?document.getElementById("iemarquee"):document.all.iemarquee
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
cross_marquee.innerHTML=marqueecontent
actualheight=cross_marquee.offsetHeight}
else if(document.layers){ns_marquee=document.ns_marquee.document.ns_marquee2
ns_marquee.top=parseInt(marqueeheight)+8
ns_marquee.document.write(marqueecontent)
ns_marquee.document.close()
actualheight=ns_marquee.document.height}
lefttime=setInterval("scrollmarquee()",150)}
catch(err){v=''}}
function scrollmarquee(){if(iedom){if(parseInt(cross_marquee.style.top)>(actualheight*(-1)+8))
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
else
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"}
else if(document.layers){if(ns_marquee.top>(actualheight*(-1)+8))
ns_marquee.top-=copyspeed
else
ns_marquee.top=parseInt(marqueeheight)+8}}
registerPloneFunction(populate);
