Hi, new(bie) question... What I want: ------------ - I'm trying to make my links as flexible as possible. - I'd like to have all links together in one folder. - I'd like to have all texts together in one folder. Reasons: -------- - Later I want to impliment multi-languages (for everything, so for links too). - I don't want to change every link implemented in my pages when some mailto- or http-address changes. - I'm lazy. I just want to make it once and let others maintain the textfiles if something changes afterwards. My setup: --------- ROOT (folder) body (dtml method) LINKS (folder) link_MailtoSomeone (dtml method) link_HttpSomeSite (dtml method) MAILTO (folder) mailto_Me (plain/text) mailto_You (plain/text) HTTP (folder) http_MySite (plain/text) http_YourSite (plain/text) TEXTS (folder) txt_MailtoSomeone_Subject (plain/text) txt_MailtoSomeone_OnMouseOver (plain/text) txt_MailtoSomeone_Description (plain/text) My coding: ---------- body = <dtml-var "LINKS.link_MailtoSomeone"> link_MailtoSomeone = <a href = "<dtml-var "MAILTO.mailto_Me">" subject = "<dtml-var "TEXTS.txt_mailtoSomeone_Subject">" onMouseOver = "window.status = '<dtml-var "TEXTS.txt_mailtoSomeone_OnMouseOver">'; return true;" onMouseOut = "window.status = ''; return true;" > <dtml-var "TEXTS.txt_mailtoSomeone_Description"> </a> mailto_Me = mailto:ybreuer@tee.toshiba.de txt_MailtoSomeone_Subject = My question is ... txt_MailtoSomeone_OnMouseOver = Send us an e-mail txt_MailtoSomeone_Description = If you have a question, click this link The result: (hopefully your still with me :-) ) ----------- Unfortunately, instead of showing me the appropriate link, this result in the following text: <a href = "<dtml-var "MAILTO.mailto_Me">" subject = "<dtml-var "TEXTS.txt_mailtoSomeone_Subject">" onMouseOver = "window.status = '<dtml-var "TEXTS.txt_mailtoSomeone_OnMouseOver">'; return true;" onMouseOut = "window.status = ''; return true;" > <dtml-var "TEXTS.txt_mailtoSomeone_Description"> </a> The question: ------------- How can I prevent getting the complete string as a result in stead of the correct link? (The question is simple, but is the answer? ;-) ) Best regards, Yvon Breuer