﻿var s = '';



s += '<div style="border: 1px solid silver; padding: 5px; font-family: tahoma; font-size: 10pt; background-color: grey;">';

s += '<div style="border-bottom: 1px solid silver; font-weight: bold; text-align: center; ">VeloNews Headlines:</div>';



s += '<style type="text/css">a.newsLink { text-decoration: none; color: black; } a.newsLink:hover { text-decoration: underline; color: #465584; } .newsTable td { font-size: 10pt; 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;">' + news_dates[i].replace(/ /, '&nbsp;') + '</td><td><a class="newsLink" target="_blank" href="' +news_urls[i] + '">' + news_titles[i] + '</a></td></tr>';

s += '</table>';

s += '</div>';



document.write(s);