iframeについて

<iframe id=iframeId name=iframeName src='foo.txt' onload='foo(this)'>

window.document.getElementById('iframeId')はthisと同じ物で,値は[object HTMLIFrameElement]
window.iframeNameはthis.contentWindowと同じ物で,値は[object Window]
つまり,idでアクセスしたときとnameでアクセスしたときの参照先は別物。

参照先のURLを知るには

this.src,または,iframeName.location.href

foo.txtの内容にアクセスするには

Firefoxなら,iframeName.document.body.contentText
IEなら,iframeName.document.body.innerText