Ho appena finito di testare il codice sia con MSIE 6.0 che con NN 4.79: a me funziona correttamente.
Ti posto l'esempio che ho usato io:
1)indice.html (il frameset)
codice:
<html>
<head>
<script language="javaScript">
<!--
//-->
</script>
</head>
<frameset rows="50,*">
<frame src="resize.html" name="resize">
<frame src="2.html" name="2">
</frameset>
</html>
2) resize.html (il frame che contiene il link per il ridimensionamento)
codice:
<html>
<head>
<script language="javaScript">
<!--
//-->
</script>
</head>
<body>
link
</body>
</html>
3)2.html (l'altro frame)
codice:
<html>
<head>
<script language="javaScript">
<!--
//-->
</script>
</head>
<body>
CIAO</p>
</body>
</html>