One thing to note is, you only need to use CDATA if you don't manually encode XML entities.

If you do this:

& instead of &

then you don't need to surround the whole thing with:

<![CDATA[ ... ]]>

which can help readability in simple cases.
_________________________
TJ.