function xmlhttpLoadTVCW(url){
if (window.XMLHttpRequest) {
	xmlhttp_tvcw = new XMLHttpRequest();
} else if (window.ActiveXObject) {
	xmlhttp_business = new ActiveXObject("Microsoft.XMLHTTP")
}
if (xmlhttp_tvcw ) {
	xmlhttp_tvcw.onreadystatechange = xmlhttpChange_tvcw;
        url = url + '?rnd=' + Math.random();
	xmlhttp_tvcw.open("GET", url, true);
	xmlhttp_tvcw.send(null);
}
}
function xmlhttpChange_tvcw() {
    if (xmlhttp_tvcw.readyState==4) {
        if (xmlhttp_tvcw.status==200) {
            document.getElementById('tvcw').innerHTML=xmlhttp_tvcw.responseText;
        } else {
            document.getElementById('tvcw').innerHTML="Não foi possível carregar os dados da TV CW.";
        }
    }
}