// JavaScript Document
var sRepeat=null
function doScrollerIE(dir, src, amount) {
	if (amount==null) amount=50
	// Move the top of the contents up or down
	// in the viewport
	if (dir=="left")
		document.all[src].scrollLeft-=amount
	else
		document.all[src].scrollLeft+=amount

	// Check if to repeat
	if (sRepeat==null)
		sRepeat = setInterval("doScrollerIE('" + dir + "','" + src + "'," + amount + ")",100)
	return false
}

// Used to end repeating scrolling
window.document.onmouseup = new Function("clearInterval(sRepeat);sRepeat=null")
window.document.ondragstart = new Function("return false")
