I don't know if it'll work, but you should be able to try "Always on top".
code:
// Declares Put this on top of code
var HWND_TOPMOST = -1;
var SWP_NOMOVE = &H2; // No idea if those will work.
var SWP_NOSIZE = &H1;
// Function Note: Handle is HWND (window handle)
function AlwaysOnTop (Handle)
{
// Also try HWND_TOP
Interop.Call("user32.dll", "SetWindowPos", Handle, HWND_TOPMOST, 0, 0, 0, SWP_NOMOVE || SWP_NOSIZE);
}