function initRSS()
{
    xmltodiv("categorylist", "/news/atom.xml", "/js/AtomLabelListToLIA.xsl");
}

function xmltodiv(strDiv, strXML, strXSL)
{
    var proc = new XSLTProcessor();

    var xmlhttp = new XMLHttpRequest();
    xmlhttp.open("GET", strXSL, false);
    xmlhttp.send('');
    var xslDoc = xmlhttp.responseXML;

    proc.importStylesheet(xslDoc);    
    objDiv = document.getElementById(strDiv); 

    Sarissa.updateContentFromURI(strXML, objDiv, proc);
}