come mai questo codice non mi funziona su IE?
codice:
<script type="text/javascript">
var num_click = 0;
var testo = '<p class="bodyPagTesto">';
testo += '<LI><font class="BodyPagSottoTitoloViola">Regione:</font> <font class="BodyPagTesto"> Lombardia </font>
';
testo += '<LI><font class="BodyPagSottoTitoloViola">Provincia:</font><font class="BodyPagTesto"> Milano </font>
';
testo += '<LI><font class="BodyPagSottoTitoloViola">Superficie del territorio comunale:</font><font class="BodyPagTesto"> 10,32 Kmq </font>
';
testo += '<LI><font class="BodyPagSottoTitoloViola">Perimetro:</font> <font class="BodyPagTesto">21.000 M.</font>
';
testo += '<LI><font class="BodyPagSottoTitoloViola">Altitudine:</font><font class="BodyPagTesto"> m. 144 s.l.m. </font>
';
testo += '<LI><font class="BodyPagSottoTitoloViola">Popolazione al 31-03-2006:</font> <font class="BodyPagTesto">32.900 </font>
';
testo += '<LI><font class="BodyPagSottoTitoloViola">Frazioni:</font>
<font class="BodyPagTesto">';
testo += 'San Damiano
';
testo += 'Baraggia
';
testo += 'Moncucco
';
testo += 'Dorderio
';
testo += '</font>
';
testo += '<LI><font class="BodyPagSottoTitoloViola">Coordinate geografiche:</font>
<font class="BodyPagTesto">';
testo += 'da Roma 613 Km
';
testo += 'da Milano 13 Km
';
testo += 'da Monza 4,5 Km</font>
';
testo += '<LI><font class="BodyPagSottoTitoloViola">Comuni confinanti:</font>
<font class="BodyPagTesto">';
testo += 'Monza, a nord
';
testo += 'Cologno Monzese e Cernusco sul Naviglio, a sud
';
testo += 'Carugate e Agrate Brianza, a est
';
testo += 'Cologno Monzese e Sesto';
testo += 'San Giovanni, a ovest </font>
';
testo += '<LI><font class="BodyPagSottoTitoloViola">Collegamenti stradali e autostradali:</font>
<font class="BodyPagTesto">';
testo += 'Autostrada A4 Milano-Venezia, uscita Agrate Brianza
';
testo += 'Tangenziale Est di Milano, uscita Brugherio
';
testo += 'Strada Provinciale Milano-Vimercate-Imbersago
';
testo += 'Strada Provinciale 208 Brugherio-Carugate
';
testo += 'Strada Provinciale 209 Brugherio-Sesto San Giovanni
';
testo += 'Strada Provinciale';
testo += '113 Monza-Cernusco sul Naviglio </font>
';
testo += '<LI><font class="BodyPagSottoTitoloViola">Prefisso telefonico:</font><font class="BodyPagTesto"> 039 </font>
';
testo += '<LI><font class="BodyPagSottoTitoloViola">C.A.P.:</font><font class="BodyPagTesto"> 20047</font>
';
testo += '</LI>';
testo += 'Chiudi[img]/images/freccia_rossa_up.gif[/img]';
testo += '</P>';
function showtip(){
if (num_click == 0){
document.getElementById('inserisci').innerHTML = testo;
num_click = 1;}
else if(num_click == 1){
document.getElementById('inserisci').innerHTML = '';
num_click = 0;
}
}
</script>
<div id="inserisci"></div>
grazie!