Nach popup close - parent reload

Hallo!

Ich möchte gerne nachdem das Popup automatisch geschlossen wird das sich die Parent seite neu läd. Aber nicht einen normalen refresh sondern zu einer andere seite.
Mein derzeitiger Code;

<!–
var win=null;

onerror = stopError;
function stopError(){
return true;
}

function test1(){
myleft=20;
mytop=20;
settings=„width=100,height=100,top=10000,left=10000,scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no,dependent=no“;
win=window.open("http://www.isdochegal.de","",settings);
win.blur();
win.resizeTo(10,height=10);
win.moveTo(mytop,myleft);
win.location=„http://www.isdochegal.de“;

setTimeout(‚win.close()‘, 1000);
}
// -->
[LinkText](javascript:test1():wink:

Ich hoffe mir kann wer helfen

Hi

mit
window.location.href = „http://blub.de“;
lädst du eine neue Seite in das ‚Hauptfenster‘

Am besten du machst dir eine Funktion zum schließen des Popups:

function closePopup() {
win.close();
window.location.href = „http://blub.de“;
}

und rufst diese dann mit setTimeout auf
window.setTimeout(„closePopup()“, 1000)

Gruß
Christian