function objetoAjax(){
	var xmlhttp=false;
	try {
	xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
	try {
	xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	} catch (E) {
	xmlhttp = false;
	}
	}
	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
	xmlhttp = new XMLHttpRequest();
	}
	return xmlhttp;
}

function promocion_atrapa(idatrapa,idcheckbox,idresultado) {
	divResultado = document.getElementById(idresultado);
	chkPromocion = document.getElementById(idcheckbox);
	tituloPromocion = document.getElementById('titulo_promocion_'+idcheckbox);
	if (chkPromocion.checked) seleccion = 1; else seleccion = 0;
	ajax=objetoAjax();
	ajax.open("POST", "http://www.cuscoculto.com/Ajax/promocion_atrapa.php",true);
	ajax.onreadystatechange=function() {
		if (ajax.readyState==4) {
			var texto = ajax.responseText;
			if (texto == "OK") {
				chkPromocion.style.backgroundColor="green";
				tituloPromocion.innerHTML="- (participando)";
			}
			if (texto == "NO") {
				chkPromocion.style.backgroundColor="red";
				tituloPromocion.innerHTML="";
			}
		}
	}
	ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	//enviando los valores
	ajax.send("idatrapa="+idatrapa+"&idpromocion="+idcheckbox+"&seleccion="+seleccion);
}
