Want to use Javascript XMLDOM in notes client....pls help

Hello All,

I have a field in the document which contains some XML. I want to show this XML Data in tabular format, and also want to perform pagination of it if the data is more. On web this is possible by using the XML DOM…

ideally XML DOM object is created on web using following code…

if(window.ActiveXObject)

{

var XMLDoc = new ActiveXObject(“Microsoft.XMLDOM”);

}

else if(document.implementation.createDocument)

{

var XMLDoc = document.implementation.createDocument(“”,“”,null);

}

else

{

alert(“Your browser cannot support this script”);

return false;

}

The above code gives an error in client.I want to perform the same in notes client. Can anyone suggest me a way.

Thanks and regards,

Aneesh