test.htm
<html>
<head>
<title></title>
<meta http-equiv="http-content" content="text/html;charset=gb2312"/>
<script></script>
</head>
<body>
<iframe name="iframes" src="tt.htm"></iframe>
<br/><input type='button' onclick="window.frames['iframes'].test();" value="CallTest"/>
</body>
</html>tt.htm
<script>
function test()
{
  alert("hello");
}
</script>