I've been using this which helps a little with the popups and is great for writing notes as even if a table activates it goes straight back to the window under the mouse so you can continue writing HEM notes (if you don't want to run the keyboard redirect script).
The script is very sensitive so can be annoying but it's paused easy enough by right clicking it's icon in the taskbar if it's interfering with something you are trying to do.
It needs to be run as a seperate script so save code in notepad as nameyouchoose.ahk
Code:
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: A.N.Other <myemail@nowhere.com>
;
; Script Function: Hover Activate
;
#persistent
setTimer, activator, 100
return
activator:
MouseGetPos, , , id, control
IfWinActive, ahk_id%id%
{
return
}
else
{
WinActivate, ahk_id %id%
}
return