<!--
function GetLatestThreads(){
  for (i = 0; i < 15; i++) {
     if (threads[i].title.length > 50) {
        threads[i].title = threads[i].title.substring(0,75) + '...';
     }
     document.writeln("<li><a href=\"http://www.d-dig.nl/forums/showthread.php?t=" + threads[i].threadid + "\">" +
     "<span class=\"lastforumcommenttitle\">" + threads[i].title + "</span><br />" +
     "<span class=\"lastforumcommentauthor\">Door: "  +
     threads[i].poster + "</span><br /><span class=\"lastforumdatetime\">" +
     threads[i].threaddate + "<br />om " +
     threads[i].threadtime + "</span><br /></a></li>");
  }
}
//-->