diff --git a/custom/dwuser.el b/custom/journalfunctions.el
similarity index 73%
rename from custom/dwuser.el
rename to custom/journalfunctions.el
index 19dfeb8..9b8ef1a 100644
--- a/custom/dwuser.el
+++ b/custom/journalfunctions.el
@@ -13,3 +13,9 @@
(setq userdisplay (subst-char-in-string ?- ?_ theuser))
(setq userlink (subst-char-in-string ?_ ?- theuser))
(insert (concat "/" userdisplay "")))
+
+(defun orgimg ()
+ "Insert an image and link to its external location"
+ (interactive)
+ (setq thefile (read-string "Image file name: "))
+ (insert "#+ATTR_HTML: :src /dw/" thefile "\n#+ATTR_HTML: :class noteimg\n[[file:~/Documents/drive/org/journal/media/" thefile "]]"))