Вот такой код пробовал
var iframe = (document.getElementById("frameId")) ? document.getElementById("frameId") : frames["frameId"];
var iDoc = (iframe.contentDocument) ? iframe.contentDocument : iframe.contentWindow.document;
document.write(iDoc.images[0].src);
И такой
var iframe = document.getElementById("frameId") ? document.getElementById("frameId") : frames["frameId"];
var iDoc = iframe.contentDocument ? iframe.contentDocument : iframe.contentWindow.document;
document.write(iDoc.getElementById('captcha_img').src);
Не помогает
В опере последней тестирую