Ciao a tutti...ho un problema riguardo l'identificazione di un mio frame...
codice:
<html>
 <frameset name='frame' cols='175,*' border='2'>
  <frame name='menu' src='http://www.google.it' frameborder='2' marginheight='8' marginwidth='5'>
  <frameset rows='60,*,10' border='2'>
   <frame name='top' src='http://www.google.it' frameborder='2' marginheight='0' marginwidth='0'>
   <frameset cols='5,*,13' border='2'>
    <frame name='left' src='http://www.google.it' frameborder='2' marginheight='0' marginwidth='0' >
    <frame name='main' src='http://www.google.it'>
    <frame name='right' src='http://www.google.it' frameborder='2' marginheight='0' marginwidth='0' >
   </frameset>
   <frame name='bottom' src='http://www.google.it' frameborder='2' marginheight='0' marginwidth='0' >
  </frameset>
 </frameset>
 <noframes>
  <body></body>
 </noframes>
</html>
Lasciando stare i sorgenti dei frame(non è google!), io mi trovo nel frame 'main',vorrei inserire uno script all'interno di questo frame che mi faccia il reload del frame 'top' ogni volta che il frame 'main' cambia...Il problema è che non so come riferirmi al frame 'top' dal 'main'

window.top... e poi?

Grazie a ttt e in particolare a chi mi indica la strada... :-)

CiaO