function sondaggio_vota(sondaggio_id,tot_opz) {
	var i, valore;

	for( i=1;i<tot_opz;i++){

		var id = 'input_opz_'+i;
		var id_input = document.getElementById(id);

		if(id_input){
			if(id_input.checked==true){
				valore = i;
			}
		}
	}
	if(valore){
		voto = document.getElementById('input_opz_'+valore).value;
		http.open('get', '/ajax/sondaggio_vota.php?sondaggio_id='+sondaggio_id+'&voto='+voto);
		http.onreadystatechange = handleResponse;
		http.send(null);
	}
}


function aggiungi_opz(sondaggio_id) {
	var nuova_opz;
	nuova_opz = document.getElementById('opz');
	opz = nuova_opz.value;
	http.open('get', '/ajax/nuova_opz.php?sondaggio_id='+sondaggio_id+'&nuova_opz='+opz);
	http.onreadystatechange = handleResponse;
	http.send(null);
}

function apri_box(div_box) {
	var div = document.getElementById(div_box);
	visibile=(div.style.display!="none")
		if (visibile) {
			div.style.display="none";
		} else {
			div.style.display="block";
		}
}

function show_box(div){
	elem = document.getElementById(div);
	elem.style.display = 'block';
}
function sondaggio_commenta(sondaggio_id, commento_id) {
	http.open('get', '/ajax/apri_commento_sondaggio.php?sondaggio_id='+sondaggio_id+'&commento_id='+commento_id);
	http.onreadystatechange = handleResponse;
	http.send(null);
}
function chiudi_box(div){
	elem = document.getElementById(div);
	elem.style.display = 'none';
}

function cambia_letture(articolo_id){
	var id_lett = document.getElementById('lett_'+articolo_id);
	lett = id_lett.value;
	http.open('get', '/ajax/cambia_letture.php?articolo_id='+articolo_id+'&letture='+lett);
	http.onreadystatechange = handleResponse;
	http.send(null);
}

function mod_opz(opz, articolo_id){
	http.open('get', '/ajax/mod_opz.php?articolo_id='+articolo_id+'&opz_id='+opz+'&view=hp');
	http.onreadystatechange = handleResponse;
	http.send(null);
}

function show_lett(id){
	var id_hide = document.getElementById('show_lett_'+id);
	var id_show = document.getElementById('letture_'+id);
	id_show.style.display = 'block';
	id_hide.style.display = 'none';
}

function hide_lett(id){
	var id_hide = document.getElementById('show_lett_'+id);
	var id_show = document.getElementById('letture_'+id);
	id_show.style.display = 'none';
	id_hide.style.display = 'block';
}

function handleResponse_2() {

if(http.readyState == 4){
    var response = http.responseText;
    var update = new Array();

if(response.indexOf('|' != -1)) {
      update = response.split('|');
      document.getElementById('blocco_ajax').innerHTML = update[1];
    }
  }
  else

document.getElementById("blocco_ajax").innerHTML = "<p align=center>Attendere prego...<br><img src=/images/ajax_loader.gif border=0></p>";

}
