function HeightData() {
	AreaHeight=dataobj.offsetHeight
	if (AreaHeight==0) {
		setTimeout("HeightData()",( startdelay * 1000 ))
	} else {
		ScrollNewsDiv()
	}
}

function NewsScrollStart() {
	dataobj=document.all? document.all.NewsDiv : document.getElementById("NewsDiv")
	dataobj.style.top=topspace
	setTimeout("HeightData()",( startdelay * 1000 ))
}

function ScrollNewsDiv() {
	dataobj.style.top=parseInt(dataobj.style.top)-(scrollspeed)
	if (parseInt(dataobj.style.top)<AreaHeight*(-1)) {
		dataobj.style.top=frameheight
		setTimeout("ScrollNewsDiv()",( nextdelay * 1000 ))
	} else {
		setTimeout("ScrollNewsDiv()",speedjump)
	}
}