When you use window.open it returns a reference to the new window. You can use that to pass information:
Code:
var oNewWin = window.open(.....);
oNewWin.newVariable = "Joe";
Then in your child window:
Code:
alert(window.newVariable);
Alternatively you can access the parent from the child using window.opener:
Code:
alert(window.opener.location);
--
Joe (
Microsoft MVP - XML)