I was able to grab a link from my iframe from the parent. They are on the same domain.
var iframe = document.getElementById('ifr1');
doc = iframe.contentDocument;
doc.getElementsByTagName('a')[10].href
How can I click on that link from the parent?