Dovrebbe essere in questo modo:
codice:
top.frames['logo'].location.href=pagina1.html;
top.frames[1].frames['testo'].location.href=pagina2.html;
Oppure (data la struttura del frameset le due versioni sono equivalenti):
codice:
top.frames['logo'].location.href=pagina1.html;
parent.frames['testo'].location.href=pagina2.html;