// This is the window scrolling javascript.


delayScroll = setTimeout('startScroll()',0);
var netscape

netscape = navigator.appName == "Netscape";

if (netscape) {
function startScroll(){
	stopScroll();
	window.schedule.scrollBy(0,1);
	delayScroll = setTimeout('startScroll()',30);
}
function forwardScroll(){
	stopScroll();
	window.schedule.scrollBy(0,1);
	delayScroll = setTimeout('forwardScroll()',30);
}
function fastForwardScroll(){
	stopScroll();
	window.schedule.scrollBy(0,5);
	delayScroll = setTimeout('fastForwardScroll()',30);
}
function backScroll(){
	stopScroll();
	window.schedule.scrollBy(0,-1);
	delayScroll = setTimeout('backScroll()',30);
}
function fastBackScroll(){
	stopScroll();
	window.schedule.scrollBy(0,-5);
	delayScroll = setTimeout('fastBackScroll()',30);
}
function stopScroll(){
	clearTimeout(delayScroll);
}
}
else{
function startScroll(){
	stopScroll();
	schedule.scrollBy(0,1);
	delayScroll = setTimeout('startScroll()',30);
}
function forwardScroll(){
	stopScroll();
	schedule.scrollBy(0,1);
	delayScroll = setTimeout('forwardScroll()',30);
}
function fastForwardScroll(){
	stopScroll();
	schedule.scrollBy(0,5);
	delayScroll = setTimeout('fastForwardScroll()',30);
}
function backScroll(){
	stopScroll();
	schedule.scrollBy(0,-1);
	delayScroll = setTimeout('backScroll()',30);
}
function fastBackScroll(){
	stopScroll();
	schedule.scrollBy(0,-5);
	delayScroll = setTimeout('fastBackScroll()',30);
}
function stopScroll(){
	clearTimeout(delayScroll);
}
}