You can modify the word press themes however you like in the editor as you can modify the source code...
Putting in an iframe should be relatively simple. If you want to open up a new tab on the title, just do something like...
<a class='my_title' href='/your/site/here' target='_blank'><h1>This is my title<h1></a>
Alternatively, if you wanted it to render in an iframe, ideally you'd have the iframe at in the page already like:
<iframe src='/link/to/site' id='my_iframe'></iframe>
Then, on your title, you can attach a jQuery / JavaScript event listener on it to render the iframe with new content on click. You'll have to double check as i'm doing this off of memory, but something like this.
<script>
$('.my_title').click(function(){
iframe = $("#my_iframe").src = 'your_new_site';
})
</script>
Something like that. Hope this helps!