Como chamar a função javascript especificada em um filho <frame>

Estou trabalhando em um projeto aciente que se baseia em e tag

Aqui está a estrutura HTML comum da página pai (index.html):

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>  
</head>
<frameset rows="75px,*" frameborder="0">
    <frame name="frame1" src="frames/frame1.html">
    <frameset class="child_frameset">
        <frame name="frame3" src="frames/frame3.html">
    </frameset>
</frameset>
</html>

qui, como especifico a função javascript no quadro filho (frame3.html):

<!DOCTYPE html>  
<html lang="en">  
<head>
    <script type="text/javascript">
        function helloWorld(){
            alert('hello world!');
        }
    </script>   
</head>
<body>
    <h1>I'm frame 3</h1>
</body>
</html>

Minha tarefa é chamarOlá Mundo( função. Como faço isso
Desde já, obrigado

questionAnswers(3)

yourAnswerToTheQuestion