var DEFspeed=2 //Enter scroll speed in integer (1-3)
var CURspeed=0
var dFrame = window.frames["descriptionFrame"];

function scrollwindow(){
	dFrame.scrollBy(0,CURspeed)
}

function initializeIT(){
	if (CURspeed!=0){
		scrollwindow()
	}
}

if (document.all||document.getElementById||document.layers) setInterval("initializeIT()",20)

