salve a tutti, o un problema al quanto dire bizzarro, con ajax.

Allora ho una pagina web così fatta.

Codice PHP:
<html>
<head>

<script>

function hellorinnovati()
{
var req = new XMLHttpRequest ();
req.onreadystatechange = function () {
if (req.readyState == 4 && req.status == 200)
document.getElementById('hello').innerHTML = req.responseText;
};

var ts = Math.round( new Date().getTime() / 10000 );



req.open ('GET', 'leggi0.php?timestamp' + ts + '&name=<? echo $_GET['name']; ?>', true);
req.send (null);
timer = setTimeout('hellorinnovati()',5000);
}

</script>


</head>
<body>

<a onclick='hellorinnovati();' href='#'>Rinnova contenuto div</a>
<div id='hello'><? include ('leggi0.php'); ?></div>


</body>
</html>
ora quando rinnovo la pagina , al click si rinnova soltanto la pagina leggi0.php a metà , come mai?.

Mi sembra molto bizzarro.

Grazie mille :)