There should be a threads[i].threadid, so you can write out a link, something like:
Code:
document.writeln('<a href="http://www.mysite.com/showthread.php?t=' + threads[i].threadid + '">' + threads[i].title + " (" + threads[i].poster + ")</a><br />");
and of course replace
www.mysite.com with your actual site.
(I didn't try that code so you might find a typo or two in there).
ETA: ok, I tried the code and fixed it, and updated the above.