<> wrote
> Anyone have any ideas why when I have two child windows open I can't
> access the window.opener functions?
Sorry, no idea. what does alert(window.opener) tell you ?
> I have tried taking each new window out of the array and used the
> following code in CloseChild() :
>
> CloseChild()
> {
> //win and totalNumWindowsCreated are both global
>
> totalNumWindowsCreated = totalNumWindowsCreated + 1;
> var win = window.open(link, "child" +
> totalNumWindowsCreated,"dependent");
Because of the "var" keyword the variable win looks awefully local to me.
Not sure how it relates to the described problem tho

.
--
Ivo