demo.htm
<frameset cols="92,*" id="baobao">
  <frame src="left.htm" name="leftFrame" scrolling="NO" >
  <frame src="main.htm" name="rightFrame">
</frameset>main.htm<a href="#" onclick="window.open('a.htm')">a</a>
<script>
function bao()
{
   alert("baobao")
}
</script>a.htm<input type="button" onclick="window.opener.top.frames['rightFrame'].bao()" value="Test">