i made a form where you input the name of the stie you want to see as a frame then it should load the page specified as a frame. here is the code
<form action="<?php echo $PHP_SELF; ?>" method="POST">
<table>
<tr>
<td><input type="text" name="site" value="<?php echo $HTTP_POST_VARS['url']; ?>">
</td>
<td><input type="submit" name="submit" value="load this as a frame">
</td>
</tr>
</table>
</form>
<iframe name="url" width="750" height="1300" frameboarder="0" vscroll="yes" hscroll="yes" scrolling="auto" src="http://www.google.ca">
</iframe>