从我的网站上打开顶部栏的新窗口链接

How my brothers cleared of any possible link to my site once pressed opens the page again and be the top bar of my site such as the following

http://www.example.com/index.html

[Edit] How to render a bar at the top of a website that shows content from some other site in its body.

i have this ode to get rss from other site

gfeedfetcher.prototype._displayresult=function(feeds){
    var rssoutput=(this.itemcontainer=="<li>")? "<ul>
" : ""
    gfeedfetcher._sortarray(feeds, this.sortstring)
    for (var i=0; i<feeds.length; i++){
        var itemtitle="<a href=\"" + feeds[i].link + "\" target=\"" + this.linktarget + "\" class=\"titlefield\">" + feeds[i].title + "</a>"
        var itemlabel=/label/i.test(this.showoptions)? '<span class="labelfield">['+this.feeds[i].ddlabel+']</span>' : " "
        var itemdate=gfeedfetcher._formatdate(feeds[i].publishedDate, this.showoptions)
        var itemdescription=/description/i.test(this.showoptions)? "<br />"+feeds[i].content : /snippet/i.test(this.showoptions)? "<br />"+feeds[i].contentSnippet  : ""
        rssoutput+=this.itemcontainer + itemtitle + " " + itemlabel + " " + itemdate + "
" + itemdescription + this.itemcontainer.replace("<", "</") + "

"
    }
    rssoutput+=(this.itemcontainer=="<li>")? "</ul>" : ""
    this.feedcontainer.innerHTML=rssoutput
}

i need when click link open in other windows with i frame

The site is just the top header with an

<iframe></iframe>

within

Check out more info at w3schools http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_iframe