there is NO valid way to disable the back button, but you can fool the browser in to thinking there is no back to go to
<SCRIPT LANGUAGE="JavaScript">
function goNewWin() {
//Get what is below onto one line
window.open("backbuttonnewpage.html",'TheNewpop','toolbar=1,
location=1,directories=1,status=1,menubar=1,
scrollbars=1,resizable=1');
//Get what is above onto one line
self.close()
}
</SCRIPT>
<A HREF="javascript:goNewWin()">Click to go to a new page</A>