function initialize_marquee(){
populateMarquee$1$();
}
var marquee$1$content = marqueecontents
/*
Cross browser Marquee II- ?Dynamic Drive (www.dynamicdrive.com) - vertical
For full source code, 100's more DHTML scripts, and TOS, visit http://www.dynamicdrive.com
Credit MUST stay intact
*/
//Specify the marquee$1$'s width (in pixels)
var marquee$1$width="150px"
//Specify the marquee$1$'s height
var marquee$1$height="100px"
//Specify the marquee$1$'s marquee$1$ speed (larger is faster 1-10)
var marquee$1$speed=1
var marquee$1$pixel=1
var marquee$1$timeinterval=80
//Pause marquee$1$ onMousever (0=no. 1=yes)?
var pauseit$1$=1
//Specify the marquee$1$'s content
//Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):
//var marquee$1$content='Thank you for visiting Dynamic Drive.If you find this script useful, please consider linking to us by clicking here.
Visit our partner JavaScript Kit for JavaScript tutorials.
'
//var marquee$1$content = marqueecontents
////NO NEED TO EDIT BELOW THIS LINE////////////
marquee$1$speed=(document.all)? marquee$1$speed : Math.max(1, marquee$1$speed-1) //slow speed down by 1 for NS
var copyspeed$1$=marquee$1$speed
var pausespeed$1$=(pauseit$1$==0)? copyspeed$1$: 0
var iedom=document.all||document.getElementById
var actualheight$1$=''
var cross_marquee$1$, ns_marquee$1$
function populateMarquee$1$(){
if (iedom){
cross_marquee$1$=document.getElementById? document.getElementById("iemarquee$1$") : document.all.iemarquee$1$
cross_marquee$1$.style.top=parseInt(marquee$1$height)+marquee$1$pixel+"px"
cross_marquee$1$.innerHTML=marquee$1$content
actualheight$1$=cross_marquee$1$.offsetHeight
}
else if (document.layers){
ns_marquee$1$=document.ns_marquee$1$.document.ns_marquee$1$2
ns_marquee$1$.top=parseInt(marquee$1$height)+marquee$1$pixel
ns_marquee$1$.document.write(marquee$1$content)
ns_marquee$1$.document.close()
actualheight$1$=ns_marquee$1$.document.height
}
lefttime=setInterval("scrollmarquee$1$()",marquee$1$timeinterval)
}
function scrollmarquee$1$(){
if (iedom){
if (parseInt(cross_marquee$1$.style.top)>(actualheight$1$*(-1)+marquee$1$pixel))
cross_marquee$1$.style.top=parseInt(cross_marquee$1$.style.top)-copyspeed$1$+"px"
else
cross_marquee$1$.style.top=parseInt(marquee$1$height)+marquee$1$pixel+"px"
}
else if (document.layers){
if (ns_marquee$1$.top>(actualheight$1$*(-1)+marquee$1$pixel))
ns_marquee$1$.top-=copyspeed$1$
else
ns_marquee$1$.top=parseInt(marquee$1$height)+marquee$1$pixel
}
}
function placemarquee$1$(){
if (iedom||document.layers){
with (document){
if (iedom){
write('
')
}
else if (document.layers){
write('')
write('')
write('')
}
}
}
}