if(typeof wavestreaming == 'undefined') { var wavestreaming = {}; } wavestreaming.liveSong = new function() { var head = window.document.getElementsByTagName('head')[0]; var script = null; function updateContent() { script = window.document.createElement('script'); script.type = 'text/javascript'; script.src = 'http://api.wavepanel.net/QGEFEKBD1OFNOIL6/status/plainsong/&' + new Date().getTime(); head.appendChild(script); } this.update = function(content) { if(content) { var container = window.document.getElementById('liveSong'); container.innerHTML = content; } if(script) { head.removeChild(script); } }; document.write('
'); updateContent(); window.setInterval(updateContent, 25000); }