script to block the browser back button
Just paste this following script in your victim web page and then save page and test it on your Browser
function preventBack(){window.history.forward();}
setTimeout("preventBack()", 10);
window.onunload=function(){null};