Jas,
Notes R5 allows you to create html Signature files; so one approach is to create the html Signature, send it to everyone as an attachment with instructions on saving it to their hard-drive, and also include instructions on how to configure the Signature to point to the appropriate html file.
Another approach (if there is a way to create shared SmartIcons)is to copy and paste the following formula in a new SmartIcon, modifying the info in red. If you want to include a logo or other graphic you can send the .gif file to everyone with instruction to save it to a
specific location that matches the directory path in the formula, e.g. "c:\\lotus\notes\data\giffile.gif" or "C:\\giffile.gif".
(The initial double \\ is necessary for Notes to recognize the directory path)
Hope this helps. Let me know if you have any questions.
Ron
TempName:=@NewLine+"
User Name";
TempCompany:=@NewLine+"
Company Name";
TempTitle:=@NewLine+"
Title, Dept, etc.";
TempPhone:=@NewLine+"
xxx-xxx-xxxx - Office";
TempFax:=@NewLine+"
xxx-xxx-xxxx- Fax";
TempOther:=@NewLine+""+@NewLine;
@Command([TextSetFontFace];"Helv"

;
@Command([TextSetFontSize];"12"

;
@Command([TextSetFontColor];[Blue]);
@Command([EditInsertText];Tempname);
@Command([EditInsertText];TempOther);
@Command([FileImport];"GIF Image";"
c:\\logo.gif"

;
@Command([TextSetFontFace];"Helv"

;
@Command([TextSetFontColor];[Black]);
@Command([TextSetFontSize];"8"

;
@Command([TextNormal]);
@Command([TextNormal]);
@Command([TextBold]);
@Command([EditInsertText];TempCompany);
@Command([TextNormal]);
@Command([TextItalic]);
@Command([EditInsertText];TempTitle);
@Command([TextNormal]);
@Command([EditInsertText];TempPhone);
@Command([EditInsertText];TempFax);
@Command([EditInsertText];TempOther)