function sopra (n) {
document.getElementById(n).className='msOver';
}
function fuori (n) {
document.getElementById(n).className='msOut';
}

// creazione sondaggio
function sondaggio2(){
if (http.readyState == 4) {
if (http.responseText.indexOf('invalid') == -1) {
results = http.responseText;
} 
document.getElementById('sondaggio').innerHTML = results;
/* window.alert(results); */
isWorking = false;
}
}

function sondaggio1(tipo,voce) {
if (!isWorking && http) {
var url = "sondaggio.php?tipo="+tipo+"&voce="+voce;
/* window.alert(url); */
http.open("GET", url, true);
http.onreadystatechange = sondaggio2;
isWorking = true;
http.send(null);
}
}





