<!--
var rfNodeId='';
function include(pURL, pNodeId) {
    if (arguments.length!=0) {
        var url=pURL;
        if (arguments.length>=2) {
            rfNodeId=pNodeId;
        }
        getFile(pURL);
    }else{
        if (xmlhttp.readyState==4) {
            if (xmlhttp.status==200) {
                if (rfNodeId=='') {
                    document.write(xmlhttp.responseText);
                }else{
                    document.getElementById(rfNodeId).innerHTML=xmlhttp.responseText;
                }
            }
        }
    }
}

function getFile(pURL) {
    if (window.XMLHttpRequest) { // code for Mozilla, Safari, etc 
        xmlhttp=new XMLHttpRequest();
        xmlhttp.onreadystatechange=include;
        xmlhttp.open("GET", pURL, true); // leave true for Gecko
        xmlhttp.send(null);
    } else if (window.ActiveXObject) { //IE 
        xmlhttp=new ActiveXObject('Microsoft.XMLHTTP'); 
        if (xmlhttp) {
            xmlhttp.onreadystatechange=include;
            xmlhttp.open('GET', pURL, false);
            xmlhttp.send();
        }
    } 
}
//-->