function thread(threadid, title, poster, threaddate, threadtime) { this.threadid = threadid; this.title = title; this.poster = poster; this.threaddate = threaddate; this.threadtime = threadtime; } var threads = new Array(5); threads[0] = new thread(11453, 'СибРО:Фильм "ВЕСТНИК ПРЕКРАСНОГО"', 'Valentina', '01.09.2010', '04:28'); threads[1] = new thread(11452, 'СибРО:О дивный остров Валаам', 'Valentina', '01.09.2010', '04:23'); threads[2] = new thread(11451, 'Дельфис:Здоровое питание и образ жизни (Классическая Аюрведа и Агни Йога)', 'Дельфиньчик', '30.08.2010', '22:57'); threads[3] = new thread(11449, 'МИСР:Посвящение в студенты', 'Igor Prolis', '30.08.2010', '20:34'); threads[4] = new thread(11446, 'СибРО:Новый раздел сайта - "Музейная педагогика".', 'Valentina', '27.08.2010', '01:46'); var line=" "; var kol=threads.length-1; for (i = 0; i < kol; i++) { line+=" "+threads[i].threaddate+" "+threads[i].threadtime+" "+threads[i].title+""; } document.writeln(""); document.writeln(line); document.writeln("");