<!--
var displayThreads = 10;	// number of threads to display (maximum is 15)
var maxTitleLength = 75;	// maximum length of the title

if (typeof(threads) != 'undefined' && threads.length) {
	if (threads.length < displayThreads) displayThreads = threads.length;

	for(i = 0; i < displayThreads; i++) {
		if (threads[i].title.length > maxTitleLength) {
			threads[i].title = threads[i].title.substring(0, maxTitleLength) + '...';
		}

		document.writeln("<tr>");
		document.writeln("<td><a href=\"http://www.websitetoolbox.com/tool/post/webmaster/vpost?id=" + threads[i].threadid + "\">" + threads[i].title + "</a>");
		document.writeln("<td>" + threads[i].poster + "</td>");
		document.writeln("<td>" + threads[i].threaddate + " at " + threads[i].threadtime + "</td>");
		document.writeln("</tr>");
	}
} else {
	document.write("<td colspan=3>There are currently no threads to display.</td>");
}

window.onerror = null;
-->