Juanmi prueba este codigo....
espero que resuelva tu problema...tu explicación no me quedó tan clara como el agua pero si resuelve tu problema es un problema menos para los humanos (humanos:1 - javascript
:0)...
padre.htm
Código HTML:
<html>
<script>
var ventana=window.open('hijo.htm','','');
function checkfocus()
{
if(!ventana.focus())
ventana.focus();
}
setInterval('checkfocus()',1000);
</script>
<body>
padre
</body>
</html>
hijo.htm
Código HTML:
<html>
<body onblur='window.focus();'>
padre
</body>
</html>