what about disableing the back button on the page? If i recall correct your back button is in the footer section
the following code will work propperly
place this in your footer
Code:
<a href="javascript:backButton()">Go Back</a>
this in your head
[code]<script>
var activitypage=false;
function backButton(){
if(activitypage==false){
history.go(-1);
}else{
//window.location=
}
}
</script>[code]
and this on your activity page to disable your backbutton(must be placed under the previous code)
Code:
<script>
activitypage=true;
</script>
__________________________________________________ ________
I am DJ Kat...that's my name. Its a D and a J and a Kat with a K.