How can I display a picture in a Dialog Box?

Hello gdg-Team

I’m struggling with embedding a picture into a HTML Dialog Box.
I use the standard HTML-Code like:

"img src=“picture.jpg” name=“pic_right” width=“215” height=“127” id=“pic_right”

When I check the Dialog Box in my Browser, everything looks perfect.
When I compile the Publication, the Dialog Box shows no more picture, only a broken link.

PS: I use an IE-Publication.

Thanks for your help.

Try to use absolute URLs such as:

"img src="http://heserver/picture.jpg" name="pic_right" width="215" height="127" id="pic_right" 

Yes, that works. Thanks!