/***********************************************
* IFRAME Scroller script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

//Specify speed of scroll. Larger=faster (ie: 5)
var scrollspeed3=cache=1

//Specify intial delay before scroller starts scrolling (in miliseconds):
var initialdelay=500

function initializeScroller3(){
dataobj3=document.all? document.all.datacontainer3 : document.getElementById("datacontainer3")
dataobj3.style.top="90px"
setTimeout("getdataheight3()", initialdelay)
}

function getdataheight3(){
thelength3=dataobj3.offsetHeight
if (thelength3==0)
setTimeout("getdataheight3()",10)
else
scrollDiv3()
}

function scrollDiv3(){
dataobj3.style.top=parseInt(dataobj3.style.top)-scrollspeed3+"px"
if (parseInt(dataobj3.style.top)<thelength3*(-1))
dataobj3.style.top="90px"
setTimeout("scrollDiv3()",40)
}

if (window.addEventListener)
window.addEventListener("load", initializeScroller3, false)
else if (window.attachEvent)
window.attachEvent("onload", initializeScroller3)
else
window.onload=initializeScroller3

