// JavaScript Document

function move_up() {
    document.getElementById('asb_contentwrap').scrollTop = document.getElementById('asb_contentwrap').scrollTop - 100;
}

function move_down() {
    document.getElementById('asb_contentwrap').scrollTop = document.getElementById('asb_contentwrap').scrollTop + 100;
}