Hi !
Der Code für das PopUp :
// Remote Control
function hallo ()
{
opener.location.href="xyz.htm";
}
<a href="#" onclick="hallo ()">Link</a>
// PopUp schließen
<a href='javascript:this.close()'>close</a>
Speichere das PopUp in einer Variablen :
pop=window.open ("popup.htm","servus","width=,height=");
Und setz' den Fokus :
pop.focus ();
That's it !!