Добавьте следующий код внизу вашего /add/design/frontend/[your-interface]/[your-theme]/page/html/head.phtml:
<script type="text/javascript">
var t = setTimeout('areYouStillThere()', 3000);
function areYouStillThere(){
if(confirm('Session is expiring. Are you still there?')){
location.reload();
}
}
</script>
Вы можете улучшить его с помощью прототипа или jQuery, если хотите.