//Ajax
var xmlHttp;

function createXMLHttpRequest() {
    if (window.ActiveXObject) {
        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    } 
    else if (window.XMLHttpRequest) {
        xmlHttp = new XMLHttpRequest();
    }
}

//Enquete Ajax
function abrir(url) {
    createXMLHttpRequest();
    xmlHttp.onreadystatechange = handleStateChangeEnquete;
    xmlHttp.open("GET", url, true);
  // xmlHttp.open("GET", "<img src='img/"+valor+"' alt='Campanha' />", true);
    xmlHttp.send(null);
}
    
function handleStateChangeEnquete() {
    if(xmlHttp.readyState == 4) {
        if(xmlHttp.status == 200) {
            document.getElementById("DivEnquete").innerHTML = xmlHttp.responseText;
        }
    }
}
