<!-- color start -->
function open_color(){
window.open("../color.html","","width=550,height=700,left=50,top=50,menubar=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes");
}
<!-- color end -->
<!-- page_up start -->
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 / 10;
point = parseInt(position - move);
scrollTo(0,point);
if (point > 0) { setTimeout("moveObje(point)",10); }
}
<!-- page_up end -->