Hi,
My requirment is diable the "Browser Back Button" and create "Back Button" to go History -1.
Actually I want to send user history back only through my "Back button".

I could disable "Browser Back Button"

Code:
<script language="javaScript">
function noBack() {
    window.history.forward();

 window.onunload = function() {
...