Well assuming the frames are both populated from the same web domain and use the same protocol then you should be able to grab the document,
Code:
var doc = top.frames["framebname"].document
Then use regular DHTML:
Code:
alert(doc.body.substr(0, 100));
--
Joe (
Microsoft MVP - XML)