function AddressRow(name,office,telephone,email)
    {
     document.write("<tr>\n");
     document.write("<td>", name,"</td>\n");
     document.write("<td align=\"center\">", office,"</td>\n");
     document.write("<td align=\"center\">", telephone,"</td>\n");
     if (email == "")
         {
          document.write("<td>&nbsp;</td>\n");
         }
        else
         {
          document.write("<td><a href=\"mailto:",email,"\">",email,"</a></td>\n");
         }
     document.write("</tr>\n");
    }

