var s = '';

s += '<div style="width: 500px; border: 1px solid silver; padding: 5px; font-family: tahoma; font-size: 8pt; background-color: white;">';
s += '<div style="border-bottom: 1px solid silver; font-weight: bold; text-align: left; ">VeloNews Latest Headlines:</div>';

s += '<style type="text/css">a.newsLink { text-decoration: none; color: black; font-size: 8pt;} a.newsLink:hover { text-decoration: underline; color: #cccccc; font-size: 8pt;} .newsTable td { font-size: 8pt; font-family: tahoma; } </style>';
s += '<table class="newsTable" cellspacing=0 cellpadding=0>';
for (var i = 0; i < news_titles.length; i++)
	s += '<tr><td valign=top style="padding-right: 4px;"><font size=1>' + news_dates[i].replace(/ /, '&nbsp;') + '</font></td><td><a class="newsLink" target="_self" href="' +news_urls[i] + '">' + news_titles[i] + '</a></td></tr>';
s += '</table>';
s += '</div>';

document.write(s);