I'm working on a friend's website and I need to know how to disable the header of a webpage when he clicks on a link. His main page has several navigation links at the top, and an iFrame that is targeted by those links so that it loads in the iFrame. All of his pages also have a header in each webpage. Is there a way to disable the header when they click on the link, but the header is visible if the user just goes to the webpage. Like, if the user clicks on the "Shows" link in the navigation, the Shows webpage won't have the header, but if he types in index.html/shows, then it will have the header.
I was thinking along the lines of this for the link code
<a href="shows.html&header.visibility=hidden" title="Shows" target="target_frame">Shows</a>
but I'm not sure that's right.