I made a pop-up that allow some users to run Scripts (CATScripts actually) from a convenient, small interface. Scripts run in Catia, and they need 32 links, provided in my pop up (ugly but useful you know?)
It works fine, but the pop-ups keep getting hidden by other windows.
So I add this to my header (found in this website):
<script type="text/javascript" language="JavaScript">
window.onblur = function() {
setTimeout('self.focus()',1);
}
</script>
Which works, but then gets annoying: once you click on link in my pop-up, it stays focused, and prevent users, say, typing a comment on an other program.
So my need would be: bring my pop-up to front, "always on top", but without the "focus". Is that possible?
P.S.: Due to my company limitations, and code implementation, this only runs on IE (it's completely blocked and not accessible on other browsers).
Thanks in advance!