var x=0
document.write('<BR>')
document.write('<BR>')
document.write('<TABLE CLASS="tblNews">')
document.write('	<TR>')
document.write('	<TH CLASS="ftVerdana8">')
document.write('> Laatste nieuws')
document.write('	</th>')
document.write('	</tr>')
document.write('	<TR>')
document.write('	<TD CLASS="tblNews">')

while (hotitems[x] != null) {
	document.write('	<TR>')
	document.write('	<TD CLASS="ftVerdana8">')
	document.write(hotitems[x])
	// If is not last item then newline
	if (x+1 != hotitems.length)
			document.write('<BR>')
	document.write('	</td>')
	document.write('	</tr>')
	x++
}

document.write('	</td>')
document.write('	</tr>')
document.write('</table>')

