Automatic scroll down div content

function scrollToBottomOfdiv(divID) {
mydiv = document.getElementById(divID);
mydiv.scrollTop = mydiv.scrollHeight;
}