
/*
Cross browser marquee script 
*/


//Specify the marquee's width (in pixels)
var marqueewidth=373
//Specify the marquee's height (in pixels, pertains only to NS)
var marqueeheight=20
//Specify the marquee's scroll speed (larger is faster)
var speed=5
//Specify the marquee contents
var marqueecontents='<span style="background-color:#D0AC88;font-size:11pt;color:#804040">' + '<font face="Courier New"><strong>The Bible Journal was started on September 18, 2001.  This website contains notes and explanations for the Daily Mass Readings beginning on that date.  This is an extension of the services of <a href="http://lectiodivina.agustinongpinoy.com" target="_blank">Otium Sanctum.</a>  Click on Information so as to learn more about the site and about how to navigate it.  For any comments, contact <a href="mailto:biblista@agustinongpinoy.com">biblista@agustinongpinoy.com</a>. Enjoy your visit.  May you find this site fruitful. New! New! New! <a href="#forum">The Bible Forum</a> is ready.  Just click on this <a href="#forum">link</a> to visit!</strong></font></span>'

if (document.all)
document.write('<marquee scrollAmount='+speed+' style="width:'+marqueewidth+'">'+marqueecontents+'</marquee>')

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write('<nobr>'+marqueecontents+'</nobr>')
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.width
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.left>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.left-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.left=marqueewidth
scrollit()
}
}

window.onload=regenerate2

