When that fails use:
//— Begin Script —
var newwindow = ‘’;
function popitup(url) {
if (!newwindow.closed && newwindow.location) {
newwindow.location.href = url;
}
else {
newwindow=window.open(url,’name’,’height=200,width=150’);
if (!newwindow.opener) newwindow.opener = self;
}
if (window.focus) {newwindow.focus()}
return false;
}
//— End Script —
It seems to be doing the same thing. When I go back to the main page, the window "disappears" under it, and when I click on the next word, the window doesn't pop up again although if I click it on the taskbar, it has the new page loaded.
Guess I should start looking into DHTML.
TS