var sRepeat=null;
function doScrollerIE(dir, src) {	
// Velocità di movimento
amount=14;
// Direzione scorrimento
if (dir=="up") {
	if (document.all){document.all[src].scrollTop-=amount;}
	else if (document.getElementById){document.getElementById(src).scrollTop-=amount;}
					}	
else {if (document.all){document.all[src].scrollTop+=amount;}
	else if (document.getElementById){document.getElementById(src).scrollTop+=amount;}
		}	

if (sRepeat==null) {
	sRepeat = setInterval("doScrollerIE('" + dir + "','" + src + "'," + amount + ")",100);}
	return false}
	
window.document.onmouseout = new Function("clearInterval(sRepeat);sRepeat=null");
window.document.ondragstart = new Function("return false");