i am using this piece of code so that when i click on a text link having an url it will open in a window. The problem i encounter now is that when you give trace to read the content, it reads well but the same conent is not poperly getting displayed in the textbox.


PHP Code:
fff = new XML();
blog_array_title = new Array();
blog_array_content = new Array();
fff.load("blog.xml");
fff.ignoreWhite true;
fff.onLoad = function(success) {
    if (
success) {        
        
hhh.htmlText fff.firstChild.firstChild.childNodes[0].nodeValue
        trace
(fff.firstChild.firstChild.childNodes[0].nodeValue);
    }
}; 
my xml file:
<blog>
<page heading="Blood Groups"><![CDATA[A blood type (also called a blood group) is a classification of blood based on the presence or absence of inherited <u><A HREF=\"asfunction: opurl,http://en.wikipedia.org/wiki/Antigen \">antigenic</A></u> substances on the surface of red blood cells (RBCs). These antigens may be proteins, carbohydrates, glycoproteins, or glycolipids, depending on the blood group system, and some of these antigens are also present on the surface of other types of cells of various tissues.]]>
</page>
</blog>