private static void WriteContactInfo(LinqIt.Utils.Web.HtmlWriter writer, string info, string prefix = "")
 {
     if (!string.IsNullOrEmpty(info))
     {
         if (!string.IsNullOrEmpty(prefix))
             writer.Write(prefix + " ");
         writer.Write(info);
         writer.WriteBreak();
     }
 }