Tu código esta desordenado, por eso no funciona.
Primero va:
Código Javascript
:
Ver originalxmlHttp.open("GET","CurrentSong.php",true);
xmlHttp.send(null);
Y luego va:
Código Javascript
:
Ver originalxmlHttp.onreadystatechange=function(){
document.getElementById('ReloadThis').innerHTML=xmlHttp.responseText;
setTimeout('Ajax()',5000);
}
Tu lo pusiste al reves.
Espero que te funcione.