//ページアップのスクリプト
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 notes(eve){
    if(document.all){
        if(event.button == 2){
            alert("右クリック禁止！");
            return false;
        }
    }
    if(document.layers){
        if(eve.which == 3){
            alert("右クリック禁止！");
            return false;
        }
    }
}
if(document.layers)document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=notes;*/

