Ciao a tutti,
ho un problema alquanto strano, ho pubblicato una pagina index.html di un sito

(questo è il codice della pagina):

<html>
<head>
<title>Xxxx</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="Javascript">
newwindow=window.open('index2.html', '', 'width=750,height=509,top='+(screen.height-509)/2+',left='+(screen.width-750)/2+',scrollbars=no' )
</script>
</head>
<body bgcolor="#d2ecef" text="#000000" topmargin=0 bottommargin=0 leftmargin=0 rightmargin=0">


</p>


</p>
<p align="center">[img]imm/logo.jpg[/img]



<font color="#000000">

<font size="3"><font size="2" face="Arial, Helvetica, sans-serif">sito ottimizzato
800x600 per I.E. e Netscape </font>
</font></font></p>
</body>
</html>

Su tutti i pc tranne due si vede e questo è il codice che appare dalla visualizzazione html; mentre su due pc appare questo codice:

<html>
<head>
<title>Xxxx</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<script language="JavaScript">
<!--

function SymError()
{
return true;
}

window.onerror = SymError;

var SymRealWinOpen(url, name, attributes)
{
return (new Object());
}

window.open = SymWinOpen;

//-->
</script>

<script language="Javascript">
newwindow=window.open('index2.html', '', 'width=750,height=509,top='+(screen.height-509)/2+',left='+(screen.width-750)/2+',scrollbars=no' )
</script>
</head>
<body bgcolor="#d2ecef" text="#000000" topmargin=0 bottommargin=0 leftmargin=0 rightmargin=0">


</p>


</p>
<p align="center">[img]imm/logo.jpg[/img]



<font color="#000000">

<font size="3"><font size="2" face="Arial, Helvetica, sans-serif">sito ottimizzato
800x600 per I.E. e Netscape </font>
</font></font></p>
</body>
</html>

<script language="JavaScript">
<!--
var SymRealOnLoad;
var SymRealOnUnload;

function SymOnUnload()
{
window.open = SymWinOpen;
if(SymRealOnUnLoad != null)
SymRealOnUnload();
}

function SymOnLoad()
{
if(SymRealOnLoad != null)
SymRealOnUnload();
window.open = SymRealWinOpen;
SymRealOnUnload = window.onunload;
window.onunload = SymOnUnload;
}

SymRealOnLoad = window.onload;
window.onload = SymOnLoad;

//-->
</script>

Con questo codice ovviamente la pagina di pop up non funziona e rimane tutto fermo alla index.html

Secondo voi da che cosa può essere generato questo codice in più??

Vi ringrazio per le vostre risposte

Ciao ciao