Dont use iframe they suck a lot

Use CSS associated to a DIV

HTML:
Code:
<div class="overflow">CONTENT</div>
CSS:
Code:
.overflow *{
 * * * * *width: 300px;
 *height: 300px;
 *overflow: hidden;
	} *

change the attributes of the overflow class to what you want. hidden can be changed to auto or other stuff that I cant remember right now, maybe scroll or something like that.... just look at some CSS tuts or google it.