document.write("<table width=100%");
//a random pick
writeOutProject(0);
//choices to keep for a while
//eliminated on 11-19-2007
//writeOutProject(25);
//writeOutProject(26);
//writeOutProject(32);
document.write("</table>");
 
function writeOutProject(projectNumber)
{
  pr = new Project();
  
  document.write("<tr>");
  if (pr.getFeaturedProject('photo',projectNumber)!="")
  {
    document.write("<td valign=top>");
    document.write("<a href=" + "'" + pr.getFeaturedProject('photo',projectNumber)+ "'" + "ALT =" + "'" + pr.getFeaturedProject('alttext',projectNumber) + "'" + ">");
    document.write("<img src=" + "'" + pr.getFeaturedProject('smallphoto',projectNumber) + "'" + "ALT =" + "'" + pr.getFeaturedProject('alttext',projectNumber) + "'" + ">"); //TR20031010
    document.write("</a>");
    document.write("&nbsp;");
    document.write("</td><td valign=top>");
  }
  else
  {
     document.write("<td valign='top' colspan='2'>");
  }
  document.write("<strong>" + pr.getFeaturedProject('name',projectNumber) + "</strong>");
  document.write(" &nbsp; &nbsp;");
  document.write(pr.getFeaturedProject('text',projectNumber));
  document.write("&nbsp; <a href=" + "'" + pr.getFeaturedProject('web',projectNumber)+ "'>");
  document.write("...more...");
  document.write("</a>");
  document.write("<br />"); 
  document.write("<br />");
  document.write("</TD>");
  document.write("</TR>");
}