Thanks, pandy! I knew it might've taken some Java for this. I got it working with this small amount of code referenced from
here.
CODE
<head>
<script type="text/javascript">
function showIt(elID)
{
var el = document.getElementById(elID);
el.scrollIntoView(true);
}
</script>
</head>
<body>
<a href="mindset.html" target="frame" onclick="showIt('pToShow');">
<div id="button"><img src="images/buttons/mindset.jpg" /></div>
</a>
<center><iframe id="pToShow" frameborder="0" scrolling="no" name="frame" width="630" height="700"></iframe></center>
</body>
I wouldn't mind an animated scroll, but if this is too complex I probably wont worry about it.
-Tom