How can I insert an image that is a link?
I have
But how do I create a wrapping link
I have
im = FCK.CreateElement('IMG');
// and then just set the atttributes of the image
But how do I create a wrapping link

Re: insert image wrapped in link
im = FCK.CreateElement('IMG'); a = FCK.CreateElement('A'); a.appendChild(im)