Странно.

Код:
<html>
<!--<script language="javascript">
</script>-->
<frameset cols="100,100"id="myframeset">
<frame name="frame1" src="frame1.html">
<frame name="frame2" src="frame2.html">
</frameset>
</html>
Соответственно один из фреймов:

Код:
<html>
<head>
<script language="javascript">
function showAlert(){
alert('This is a first frame');
}
</script>
</head>
<body onload="showAlert()">
Frame1
</body>
</html>
При перезагрузке 1-го (правого) фрейма (через контекстное меню) алерт показывается.