If you have a bar at the bottom you can also make the buttons appear at the top by using the following. I have cometchat at the bottom so I had to alter the code to make it works..
PHP Code:
<!-- Begin Template Mod -- The Up/Down buttons -->
if(self==top) create_up();
// End Up code.
//
// Begin Down code.
function create_down() {
if(document.body){
var down = document.createElement('span');
down.innerHTML = "Down";
var dosty = "opacity:0.7;position:fixed;text-align:right;right:0px;top:0px;z-index:50000;";
dosty+="border: 2px solid;-moz-border-top-colors: ThreeDLightShadow ThreeDHighlight;-moz-border-right-colors: ThreeDDarkShadow ThreeDShadow;-moz-border-top-colors: ThreeDDarkShadow ThreeDShadow;-moz-border-left-colors: ThreeDLightShadow ThreeDHighlight;padding: 3px;color: MenuText;background-color: Menu;font-size:9pt;font-family:arial,sans-serif;cursor:pointer;";
down.style.cssText = dosty;
down.addEventListener('mouseover', function(){ down.style.opacity = 1; }, false);
down.addEventListener('mouseout', function(){ down.style.opacity = 0.5; }, false);
down.addEventListener('click', function(){ window.scrollTo(0, document.body.scrollHeight); }, false);
document.body.appendChild(down);
}
};
if(self==top) create_down();
// End Down code.
</script>
<!-- End Template Mod -- The Up/Down buttons -->
You can see the results here
http://www.theflirtingretreat.com/