You would probably want to replace this code:
Code:
// scroll to saved position if possible
if (false !== s)
{
window.scrollTo( s[0], s[1] );
// Verify that page is scrolled, otherwise try again (make sense for IE & Opera only)
window.setTimeout( function() {
var s_now = iQuote.getScrollXY();
if ( s_now[0] != s[0] || s_now[1] != s[1] )
{
window.scrollTo( s[0], s[1] );
}
}, 10 );
}
return false;
},
with:
Code:
window.location.hash='qrform';
return false;
},