///////////////////////////////////////////////////////////////////////
<!-- Begin 
var boh = 750;
function floatButton () { 
if (document.all) { 
	if (typeof document.compatMode != 'undefined' && document.compatMode != 'BackCompat') {
		document.all.topButton.style.pixelTop = document.documentElement.scrollTop + 10;
	} else if (typeof document.body != 'undefined') { 
		document.all.topButton.style.pixelTop = document.body.scrollTop + 10; }
	} 
else if (document.layers) { 
window.document.topButton.top = window.pageYOffset + 0; 
} 
else if (document.getElementById) { 
document.getElementById('topButton').style.top = window.pageYOffset + 10 + 'px'; 
}
}

if (document.all) {
window.onscroll = floatButton; 
} else {
setInterval ('floatButton()', 50); 
}

function initButton () { 
if (document.all) { 
	document.all.topButton.style.pixelLeft = 0; 
	document.all.topButton.style.visibility = 'visible'; 
}
else if (document.layers) { 
	document.topButton.left = 1; 
	document.topButton.visibility = 'show'; 
} 
else if (document.getElementById) { 
document.getElementById('topButton').style.left = '1px'; 
document.getElementById('topButton').style.visibility = 'visible'; 
   } 
} 
//--> 
///////////////////////////////////////////////////////////////////////
<!--
function scrollit()
{for (I=1; I<=2500; I++) window.scroll(1,I);}
//-->
///////////////////////////////////////////////////////////////////////
/* Copyright (c) 1999 Jochen Staerk */

