function forenticker() { var max = 8; if(threads.length < max) max = threads.length; for(i = 0; i < max; i++) { if (threads[i].title.length > 24) { threads[i].title = threads[i].title.substring(0, 24) + "..."; }        document.writeln('<span class="small" style="overflow: hidden;">' + threads[i].threaddate + " | " + threads[i].threadtime + " " + '<a target="_blank" href="http://forum.worldofplayers.de/forum/showthread.php?t=' + threads[i].threadid + '">' + threads[i].title + '</a></span><br>'); } }
