I believe this question has already been asked:
Disabling Back button on the browser
Prevent Use of the Back Button (in IE)
If you're trying to prevent the user from losing their work, try something like:
window.onbeforeunload = function() { return "You work will be lost."; };
Steve