From now on, all posts we pull in will be stripped so you have to visit the original blog's post to download.
Soon, you will be able to play each post's track from the frontpage and the post page. To read more go here.
Search
Being Traxed Right Now...
function getCurrentPosts()
{
var xhr;
try { xhr = new ActiveXObject("Msxml2.XMLHTTP"); }
catch (e)
{
try { xhr = new ActiveXObject("Microsoft.XMLHTTP"); }
catch (e2)
{
try { xhr = new XMLHttpRequest(); }
catch (e3) { xhr = false; }
}
}
xhr.onreadystatechange = function()
{
if(xhr.readyState == 4)
{
if(xhr.status == 200)
{
document.getElementById("cw_update").innerHTML = xhr.responseText;
}
}
};
xhr.open("GET", "http://offthetrax.com/con/f/currentlywatching/getcurrent_im.php", true);
xhr.send(null);
setTimeout("getCurrentPosts()", 10000);
}
























