Doesn't this work?
if (IsDefined(window.showModalDialog))
{
//Handles IE6 & 7
retVal= window.showModalDialog(sPage,argsArr, sFeatures);
}
else
{
//Handles Firefox
retVal=window.open(sPage,sFeatures+"modal=yes");
}Then in the window you can set: window.returnValue=something;

