Even if you can do some snazzy client side wizardry which I have never seen. Users can simply press Ctrl + N, F11 or right click/back - this brings back the tools including the back button.
My suggestion is to use the
JS window.open function creating a window without browser features you dont want - EG:
var newWindow
function openNewWin(pageURL, pageName, width, height, top, left)
{
newWindow = window.open(pageURL, pageName,"width=" + width + ",height=" + height + ",top=" + top + ",left=" + left + ",scrollbars=0, resizable=1,toolbar=0,location=0,status=0,menubar= 0");
newWindow.focus()
}
call it like:
<a href="#" onClick="openNewWinScroll('pageName.asp','windowNa me',650,200,150,150);">open Window</a>
This way only users who know how to get window features back can do so.
Wind is your friend
Matt