Ho costruito una pagina a frame del tipo:
______________________________________
<html>
<frameset rows="20,*,0" frameborder="0" scrolling="no" border=0 noresize>
<frame name="FR1" src="pagina1.html" scrolling="no" noresize>
<frame name="FR2" src="pagina2.html" scrolling="auto" noresize>
<frame name="FR3" src="pagina3.html" scrolling="auto" noresize>
</frameset>
</html>
______________________________________

... in pagina2.html vorrei una funzione che mi cambi le impostazioni del frameset da rows="20,*,0" a rows="20,0,*";

Grazie;