var intNews = maxNews - 1;

document.write("<table border='0' cellpadding='0' cellspacing='0'>");

for(var count = intNews; count > -1 ; count--){
  document.write("<tr>");
  document.write("<td width='150' valign='top' style='background-color:#0C0C0C; border-right:1px solid #000000; border-top:1px solid #000000; font-family:arial; font-weight:bold; font-size:12px; color:#AFAFAF;'>");
  document.write("&nbsp <br>");
  document.write("&nbsp " + arrayNews[count][0] + "<br>");
  document.write("</td>");
  document.write("<td align='center' style='background-color:#141414; border-top:1px solid #000000; font-family:times; font-weight:normal; font-size:12px; color:#AFAFAF;'>");
  document.write("<div style='width:95%;' align='left'>");
  document.write("&nbsp <br>");
  document.write(arrayNews[count][1]);
  document.write("</div>");
  document.write("</td>");
  document.write("</tr>");
}

document.write("</table>");
