﻿function scrollDown() {
    var objDiv = document.getElementById("contenttext");
    objDiv.scrollTop += 10;
}

function scrollUp() {
    var objDiv = document.getElementById("contenttext");
    objDiv.scrollTop -= 10; //objDiv.scrollHeight;
}

function showScrollBar() {
    // check if the area exists

    // check if its big

    // show the scroll bar

}
