 function showNationalNews(howmany) {
  var Newspaper = new Array (); 
  var providedby = "Provided by CBIA";
  var providedbylink = "http://www.cbia.com/";
  Newspaper[0] = new Array ("Federal debt tops $13 trillion mark","Washington Times","http://www.washingtontimes.com/news/2010/jun/2/federal-debt-tops-13-trillion-mark/");
  Newspaper[1] = new Array ("Fed’s Lockhart says rates may rise with unemployment still high","Bloomberg","http://www.businessweek.com/news/2010-06-03/fed-s-lockhart-says-rates-may-rise-with-unemployment-still-high.html"); 
  Newspaper[2] = new Array ("Obama hopes oil spill boosts support for climate bill","Washington Post","http://www.washingtonpost.com/wp-dyn/content/article/2010/06/02/AR2010060200380.html?hpid=topnews");
  Newspaper[3] = new Array ("House, Senate candidate pool grows from sour mood","USA Today","http://www.usatoday.com/news/politics/2010-06-02-house-candidates_N.htm"); 
  Newspaper[4] = new Array ("Obama hits Republicans for economic woes","Washington Times","http://www.washingtontimes.com/news/2010/jun/2/obama-hits-republicans-economic-woes/");
  Newspaper[5] = new Array ("U.S., emerging markets to recover nicely in third quarter","Forbes","http://www.forbes.com/2010/06/01/global-economy-recovery-euro-markets-economy-oxford-analytica.html?boxes=Homepagelighttop");
  Newspaper[6] = new Array ("ObamaCare's ever-rising price tag","Wall Street Journal","http://online.wsj.com/article/SB10001424052748703561604575282482320389198.html"); 
  Newspaper[7] = new Array ("","","http://money.cnn.com/2010/06/02/news/economy/job_cuts_challenger/index.htm");
  Newspaper[8] = new Array ("","",""); 
  Newspaper[9] = new Array ("","",""); 
  for(var i = 0; i<howmany; i++) 
      if (Newspaper[i] && Newspaper[i][0]!="") document.write("<p class = 'source'>"+Newspaper[i][0].link(Newspaper[i][2])+"</p><p style='margin-top:0px; margin-bottom:5px; font-size:11px;'  />"+Newspaper[i][1]+"</p>");
  document.write("<p class='newsprovidedby'>"+providedby.link(providedbylink)+"</p>");
}
