If we allow people to set Active Topics to Auto Reload the page, then
we also should re-open the browser if someone minimixes it or opens
another browser over it.
window.focus brings the browser with Active Topics to the front each
time the Auto Reload Interval passes.
If they did not want the browser to open every 10 minutes, they would
not have set it to refresh every 10 minutes.
Code:
" self.setInterval('autoReload()', 60000 * document.ReloadFrm.RefreshTime.options[document.ReloadFrm.RefreshTime.selectedIndex].value)" & vbNewline & _
" }" & vbNewline & _
Edit to:
" self.setInterval('autoReload()', 60000 * document.ReloadFrm.RefreshTime.options[document.ReloadFrm.RefreshTime.selectedIndex].value)" & vbNewline & _
" };" & vbNewline & _
" window.focus();" & vbNewline & _