function pc(fullname,biofile,picfile,pc_position,chair_position,other_position,term,phone,email)
{
  var width = "96";
  var height = "96";
  var emaildomain = "STAparish.net";
  var pic = (picfile == "") ? "/refs/a-dove-96b.gif" : picfile + "/" + picfile + "-96.jpg";
  if(col_ctr==1) { document.write("<tr>\n\n"); }
  document.write("  <td><table border=\"0\"><tr>\n      <th width=\"50\">\n");
  if(biofile != "") { document.write("        <a href=\"" + biofile + "/\"\n         onMouseOver=\"window.status='" + fullname + "'; return true;\"\n         onMouseOut=\"window.status=''; return true;\">\n"); }
  document.write("        <img align=\"top\" src=\"" + pic + "\" height=\"" + height + "\" width=\"" + width + "\" border=\"1\" alt=\"" + fullname + "\">");
  if(biofile != "") { document.write("</a>"); }
  document.write("</th>\n      <td nowrap><dl>\n        <dt>");
  if(biofile != "") { document.write("<a href=\"" + biofile + "/\"\n         onMouseOver=\"window.status='" + fullname + "'; return true;\" onMouseOut=\"window.status=''; return true;\">" + fullname + "</a></dt>\n"); }
  else { document.write(fullname + "</dt>\n"); }
  if(pc_position != "") { document.write("        <dd style=\"color: #cc0000; font-size: 11px; font-weight: bold;\">" + pc_position + "</dd>\n"); }
  if(chair_position != "") { document.write("        <dd style=\"font-weight: bold;\">" + chair_position + " Chair</dd>\n"); }
  if(other_position != "") { document.write("        <dd style=\"white-space: normal;\">" + other_position + "</dd>\n"); }
  if(term != "") { document.write("        <dd>term: " + term + "</dd>\n"); }
  if(phone != "") { document.write("        <dd>" + phone + "</dd>\n"); }
  if(email != "")
  {
    var emailparts = email.split("@");
    email = (emailparts.length == 1) ? email + "@" + emaildomain : email;
    document.write("        <dd><a class=\"email\" href=\"mailto:" + email + "\">" + email + "</a></dd>\n");
  }
  document.write("        </dl></td>\n      </tr><tr><td colspan=\"2\"><br></td>\n  </tr></table></td>\n\n");
  if(col_ctr<cols)
  { document.write("  <td width=\""+gutter+"\">&nbsp;</td>\n\n"); col_ctr++; }
  else
  { document.write("</tr>\n\n"); col_ctr = 1; }
}

function finish()
{
  while(col_ctr<cols && col_ctr!=1)
  {
    document.write("  <td>&nbsp;</td>\n\n");
    document.write("  <td width=\"" + gutter + "\">&nbsp;</td>\n\n");
    col_ctr++;
  }
  if(col_ctr==cols && col_ctr!=1)
  { document.write("  <td>&nbsp;</td>\n\n"); }
}

