English
<!-- http://bbs.downcodes.com/ --> <!--To achieve this effect, add the following code to the <body> area --> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function hidden() {document.body.style.overflow='hidden';} function unhidden() {document.body.style.overflow='';} // End --> </script> <div align= "center"> <form> <input type="button" value="Hide scroll bar" onclick="hidden()"><br> <input type="button" value="Show scroll bar" onclick="unhidden ()"> </form> </div>