I'm not sure you can hide and show frames - although certainly this is something I've never actually tried, so cannot be 100% sure of this.
You should, however, have no problems hiding and showing iframes by setting either the "style.display" property, or the "style.visibility" property, depending on the desired effect.
If you set style.display, the element will be hidden, and the space etaken up by it will shrink. Using style.visibility, it will be hidden, but the space taken up will be left on the page.
Hope this helps,
Dan