Scusate sto impazzendo nel carcare una soluzione a questo problema...
Ovviamente comprare solo su IE e firebug non trova niente...

Riga: 28
Carattere: 7
Errore: Proprietà o metodo non supportati dall'oggetto

Credo che l'errore arrivi da questa pagina:

codice:
<html:html locale="true">
<head>
<title>Gestione Giroconto</title>
<script src="../css/Script/utility.js" type="text/javascript"></script>
<script src="../css/Script/AlertCode.js" type="text/javascript"></script>
<link href="../css/styleIE.css" rel="stylesheet" type="text/css">

<%AbilitazioniUtente abilitazioniUtente = null;%>

<%@ include file="../common/loadLogConnection.jsp" %>

<SCRIPT LANGUAGE="JavaScript">

function viewGiroconto(form){
	   document.prova.flag.value = 'GC';
	   //document.all.linkPageDGC.style.display = 'none';
	   //document.all.NOlinkPageDGC.style.display = '';
	<% if((abilitazioniUtente.getInserimentoGiroconto()).equals("true")){%>
	   //document.all.linkPageGC.style.display = '';
	   //document.all.NOlinkPageGC.style.display = 'none';
	 <%}%>
	<% if(request.getParameter("flag") != null && request.getParameter("flag").equals("NGC")){%>
	          //document.all.linkPageDGC.style.display = '';
	          //document.all.NOlinkPageDGC.style.display = 'none';
	          //document.all.linkPageGC.style.display = 'none';
	          //document.all.NOlinkPageGC.style.display = '';
	          document.prova.flag.value = '<%=request.getParameter("flag")%>';
	          document.prova.flagView.value = 'nuovoGC';
	<% }%>

........
Che include questa... loadLogConnection.jsp

codice:
<%// verifico l'esistenza dell'istanza della classe log
  FileLog fileLog = null;
  long idUserSession;
  if( session.getAttribute( Constants.FILE_LOG ) == null ){
    try {
        fileLog = new FileLog();
        fileLog.print( this, "loadLogConnection.jsp", "E' stata creata una nuova istanza del FileLog");
    }catch( Exception e ){
        throw new GeneralException( e.toString() );
    }
    session.setAttribute(Constants.FILE_LOG, fileLog);
  } else{
      fileLog = (FileLog)session.getAttribute( Constants.FILE_LOG );
      //fileLog.print( this, "loadLogConnection.jsp", "FileLog recuperato dalla sessione");
  }
  abilitazioniUtente = (AbilitazioniUtente)session.getAttribute("abilitazioniUtente");
  //fileLog.print( this, "loadLogConnection.jsp", "abilitazioniUtente: " + abilitazioniUtente);
  Long idUser = (Long)session.getAttribute("idUserSession");
  if(idUser == null){
      fileLog.error( this, "loadLogConnection.jsp", "Controllare l'idUser, potrebbe essere null");
      session.setAttribute("mess", Message.MESSAGE_EXC_PRE + Message.MESSAGE_EXC_POST);
      response.sendRedirect(Constants.JSP_PAGE_ERROR);
  }
  idUserSession = idUser.longValue();
%>
La prima parte del sorgente preso dalla pagina caricata è questo:

codice:
<html lang="it"><head><title>Gestione Giroconto</title><script src="../css/Script/utility.js" type="text/javascript"></script><script src="../css/Script/AlertCode.js" type="text/javascript"></script><link href="../css/styleIE.css" rel="stylesheet" type="text/css">      <SCRIPT LANGUAGE="JavaScript">  function viewGiroconto(form){	   document.prova.flag.value = 'GC';	   //document.all.linkPageDGC.style.display = 'none';	   //document.all.NOlinkPageDGC.style.display = '';		   //document.all.linkPageGC.style.display = '';	   //document.all.NOlinkPageGC.style.display = 'none';	 		}function selectContoCorrente(page, numConto){	var params;	document.prova.flagView.value = page;	if (numConto == 1)	{		if (document.prova.conto.checked)			params = document.prova.conto.value;	}	else	{		for (var i=0; i < numConto; i++)		{			if (document.prova.conto[i].checked)			{								params = document.prova.conto[i].value;				document.prova.saldo.value = document.prova.saldoDisponibile[i].value;							break;			}		}		}		
....................
Qualcuno saprebbe aiutarmi a capire?
Grazie a tutti...