Basic news like site

hi frs

pls chk the code below
this is just to display a news like display in a texbox component
the file is a XML file (headlines)
what happen is when the file is loaded it displays a news like site

headlineXML = new XML();
headlineXML.onLoad = myLoad;
headlineXML.load(“headlines.xml”);
function myLoad(ok) {
if (ok == true) {
Publish(this.firstChild);
}
}

function Publish(HeadlineXMLNode) {
if (HeadlineXMLNode.nodeName.toUpperCase() == “BROADCAST”) {
content = “”;
story = HeadlineXMLNode.firstChild;
while (story != null) {
if (story.nodeName.toUpperCase() == “STORY”) {
lead = “”;
body = “”;
URL = “”;
element = story.firstChild;
while (element != null) {
if (element.nodeName.toUpperCase() == “LEAD”) {
lead = element.firstChild.nodeValue;
}
if (element.nodeName.toUpperCase() == “BODY”) {
body = element.firstChild.nodeValue;
}
if (element.nodeName.toUpperCase() == “URL”) {
URL = element.firstChild.nodeValue;
}

                 if (element.nodeName.toUpperCase() == "DETAILS") {
                    DETAILS = element.firstChild.nodeValue;
                }
                element = element.nextSibling;
            }
            [COLOR=DarkRed]**content += "<font size='+2' color='#3366cc'><a href='"+URL+"'>"+lead+"</a></font><br>"+body+"<br><br>";
            txt.htmltext=content;**
        }[/COLOR]
        story = story.nextSibling;
    }
}

}

[COLOR=Red]example

<link>This is the Headlines</link>
this is the headlines. this is the message[/COLOR] [COLOR=DarkRed]“more>>”[/COLOR]

what i want is to add a “more>>” link like we do in “read more”
and when cliking the link the DETAILS element’s value should be displayed in the new window and
cud anyone pls tell me how i can i do that
it cud be a gr8 help
thx
:cop: