You just create your iFrame and make sure you give it a name attribute. Then set the target of the link to the name of the iFrame.
Code:
<iframe src="somepage.html" name="frame">
For the link you would do this:
Code:
<a href="pagetoappearintheiframe" target="frame">Link Text Here</a>
And that should do it.