var tw = 250; var th = 120; 
var y = th; 
var wait = false;

document.write ('<STYLE TYPE=TEXT/CSS>');
document.write ('#ticker_container	{ position:relative; width:' + tw + 'px; height:' + th + 'px }');
document.write ('#bgticker		{ position:absolute; overflow-y:hidden; width:' + tw + 'px; height:' + th + 'px;  clip:rect(0px,' + tw + 'px,' + th + 'px,0px) }');
document.write ('#ticker		{ position:absolute; font-size:11px; width:' + tw + 'px }');
document.write ('</STYLE>');

scroll_ticker();

function scroll_ticker() {
	if (!wait) {
		var h = document.getElementById('ticker').offsetHeight;
		document.getElementById('ticker').style.top = y;
		y--; if (y < (0 - h)) y = th;
	}
	window.setTimeout("scroll_ticker()", 100);
}

