function initRSS(tmpFilterName, tmpFilterValue)
{         
	xmltodiv("actioncallrss", "/newsroom/feed/atom/", "/rss/AtomToLIALimit5.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);
    
    
    var xmlhttp = new XMLHttpRequest();
    xmlhttp.open("GET", strXML, false);
    xmlhttp.send('');
    var pageContent = xmlhttp.responseText;
    
    objDiv.innerHTML = pageContent;
}

function xmltodivparampair(strDiv, strXML, strXSL, strParamName, strParamValue)
{    
    var proc = new XSLTProcessor();

    var xmlhttp = new XMLHttpRequest();
    xmlhttp.open("GET", strXSL, false);
    xmlhttp.send('');
    var xslDoc = xmlhttp.responseXML;

    proc.importStylesheet(xslDoc);
    proc.setParameter(null, strParamName, strParamValue);
    
    objDiv = document.getElementById(strDiv); 
    
    Sarissa.updateContentFromURI(strXML, objDiv, proc);
}
