ho una pagina struttura con i frame come segue:

codice:
<frameset rows="23,*,24" cols="*" framespacing="0" frameborder="NO" border="0">
  <frame src="head.asp" name="topFrame"   scrolling="NO" noresize >
  <frameset rows="*" cols="220,*,220" framespacing="0" frameborder="NO" border="0">
		<frame src="TreeView.asp" name="leftFrame" scrolling="yes" noresize>
		<frame src="Management.asp" name="mainFrame"  scrolling="yes">
		<frameset rows="220,*" frameborder="NO" border="0" framespacing="0">
			<frame src="ManageProperty.asp?Anag=-1" name="topFrame" scrolling="NO" noresize>
			<frame src="Anagrafiche.asp?Anag=-1" name="rigthFrame"  scrolling="yes" noresize>
		</frameset>
  </frameset>
  <frame src="food.asp" name="bottomFrame"  scrolling="NO" noresize>
</frameset>
dalla pagina "Management.asp" contenuta in "mainframe" richiamo in modo automatico il refresch del frame "rigthFrame" che contine il file "Anagrafiche.asp"

Per ottenere questo esegue questa JS:
codice:
<script language="JScript">top.rigthFrame.window.location.href = "Anagrafiche.asp?Anag=Attrib";</script>
Il js è perfettamente funzionante con IE ma non funziona con FIREFOX.

Come posso rendere compatibile il JS in questione al fine di farlo funzionare con entrambi i browser.