function xmlhttpLoadCZ(url){
if (window.XMLHttpRequest) {
	xmlhttp_assine = new XMLHttpRequest();
} else if (window.ActiveXObject) {
	xmlhttp_assine = new ActiveXObject("Microsoft.XMLHTTP")
}
if (xmlhttp_assine ) {
	xmlhttp_assine.onreadystatechange = xmlhttpChangeCZ;
	xmlhttp_assine.open("GET", url, true);
	xmlhttp_assine.send(null);
}
}
function xmlhttpChangeCZ() {
    if (xmlhttp_assine.readyState==4) {
        if (xmlhttp_assine.status==200) {
            document.getElementById('portlet-cz').innerHTML=xmlhttp_assine.responseText;
        } else {
            document.getElementById('portlet-cz').innerHTML="Não foi possível carregar os dados do company zone.";
        }
    }
}