You have at least two choices:
* If the paarmeter is serialisable include it as a querystring
* If it's an object pass it using the reference returned by window.open:
Code:
var oChildWindow = window.open(sUrl, sName, sFeatures);
oChildWindow.data = <your parameter here>;
Then in the popup you can access self.data.
--
Joe (
Microsoft MVP - XML)