function bodyload(){
	bodyresize();
}

function bodyresize(){
	var c=document.all('conta');
	var tc=document.all('tblcont');
	if(tc!=null){
		tc.style.display='block';
		tc.style.left = getLeft(c) + ((c.clientWidth - tc.clientWidth)/2);
		tc.style.top = getTop(c) + 80;
	}
}

var scrtOut=-1;

function scUp(){
	if(divcontenth.scrollTop>0){ 
		divcontenth.scrollTop-=8;	
		scrtOut=setTimeout('scUp()' , '100');
	}
}

function scDown(){
	var h_all=divcontenth.scrollHeight;
	var h_view=divcontenth.clientHeight;
	
	if(divcontenth.scrollTop<(h_all - h_view)){ 
		divcontenth.scrollTop+=8;	
		scrtOut=setTimeout('scDown()' , '100');
	}

}