So you are saying that you want to open an IFRAME but when it opens it does not open the TOP of the page that is being OPENED but a specific area.
If it is what you are asking than YES it is possible. To do that - the place that you want to be opened needs to have an ID so you can call it once the iframe is opened for example :
this is your iframe code :
CODE
<iframe width="700" height="400" name="myiframe" src="mypage.html#some"></iframe>
and this is your html page :
CODE
Helo, welcome to my site.. this is this and that and sometimes we do this and that and also this and tht but this and that is always this and that of cours if this is that than that is this with this inside that over that behind this with that on top of this its that plus this when this is over than this is that over plus some over over this and that.<br>
<br>
<div id="some">Here</div>
<br>
Also here is ther and there is here when that is there with here is this over there and here and that and this is this and that over here over there with there over here on top of there this that here if this is that there is here.
What it does, if you look closesly you will see that the iframe SRC page (the page that is being opened is :
mypage.html#some
And inside my html page i have a DIV with the ID 'some'
What the iframe code does is instead of opening the top of the page called mypage.html its openes mypage.html but at the SOME location, in that case it will start by :
CODE
<div id="some">Here</div>
<br>
Also here is ther and there is here when that is there with here is this over there and here and that and this is this and that over here over there with there over here on top of there this that here if this is that there is here.
People will be able to scroll top/bottom so they can go up and see the rest and they can go down and see the rest.