xsltnewbie 0 Newbie Poster

I have the following source xml file.
<root>
<child1></child1>
<child2></child2>
</root>

I need to convert it to

<MYOWNTAG1>
<TEST1>CurrentDate</TEST1>
<TEST2>CurrentTime</TEST2>
</MYOWNTAG1>
<MYOWNTAG2>
<XML>
<![CDATA[<root><child1></child1><child2></child2></root>]]>
<XML>
</MYOWNTAG2>

I'm having problem in inserting the CDATA section.Please help.