If the IFrames are in the same domain then you can either update the SRC property, i.e. reload an IFrame with new parameters, or if the variables are available directly you may be able to use Javascript to 'tree walk' between the IFrames to get the value e.g. :
thisVar = document.parent.otherIFrame.otherVar
|