Well.... There is a difficult way to imitate SmartNavigation using JavaScript. Here goes....
<form onsubmit=smartNavInit(this.smartnav_x, this.smartnav_y) action=whatever method=get_or_post>
<input type=hidden id=smartnav_x value=''>
<input type=hidden id=smartnav_y value=''>
</form>
<script type=text/javascript>
function smartNavInit(sn_x, sn_y)
{
sn_y.value = window.scrollTop;
sn_x.value = window.scrollLeft;
return true;
}
</script>
<script type=text/javascript>
onload=smartNavGo;
function smartNavGo()
{
var smrtnv_x = <%=Request.Form("smartnav_x")%>;
var smrtnv_y = <%=Request.Form("smartnav_y")%>;
window.scrollTo(smrtnv_x, smrtnv_y);
}
</script>
Forgive me if it doesn't work- it is bound to have an error or two.
HTH,
Snib
<><