bit of research shows there is some new DOM syntax for easy access to what is inside your iframe:
document.getElementById(iframeId).contentDocument
and yuo just have to check if the readystate property is set to "complete" to make sure everything is downloaded.
This may not work across domains and security barriers, but for accessing data and content fromy our own site, it does.
A hidden collapsed iframe in such instances is an easy alternative to AJAX. I've tested it. it works!!!