//ページアップのスクリプト
function pageup(e) {
	UAGENT = navigator.userAgent.toUpperCase();
	if (UAGENT.indexOf("MSIE") >=0) { posi = event.y; }
	else { posi = e.pageY; }
	moveObje(posi);
}
function moveObje(position) {
	move = position / 5;
	point = parseInt(position - move);
	scrollTo(0,point);
	if (point > 0) { setTimeout("moveObje(point)",5); }
}


// フォントサイズ変更


function disp(filename){
 location=filename;
}
function bigger(){
 document.body.style.fontSize="120%";
}
function smaller(){
 document.body.style.fontSize="80%";
}
function defalut(){
  document.body.style.fontSize="100%";
}