//////////// scrolling


function initScrollers( ) {
	//last arg determines upper page limit for scroller
    scrollBars[0] = new scrollBar("outerWrapper0", "innerWrapper0", "lineup0", 
        "linedown0", 2);
    scrollBars[0].initScroll( );
}


//////////// Data



function initializePage(){
	//populateDecadeMenu();
	initDHTMLAPI( );
	initScrollers( );
}


function writit(text,id){
	
	if (document.getElementById){
		x = document.getElementById(id);
		//x.innerHTML = '';
		x.innerHTML = text;
	}
	else if (document.all){
		x = document.all[id];
		x.innerHTML = text;
	}
}

