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 megusta(valor_megusta) {
	divResultado = document.getElementById('re_megusta');
	divNumResultado = document.getElementById('num_megusta');
	divResultado.innerHTML = "enviando...";
	idEvento = document.getElementById('megusta_evento').value;
	idFoto = document.getElementById('megusta_foto').value;
	idVideo = document.getElementById('megusta_video').value;
	ajax=objetoAjax();
	ajax.open("POST", "http://www.cuscoculto.com/Ajax/megusta.php",true);
	ajax.onreadystatechange=function() {
		if (ajax.readyState==4) {
			divResultado.innerHTML = ajax.responseText
			var texto = divNumResultado.innerHTML;
			if ( valor_megusta == 1 )
				texto++; 
			else
				texto--;
			divNumResultado.innerHTML = texto;
		}
	}
	ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	//enviando los valores
	ajax.send("megusta="+valor_megusta+"&megusta_evento="+idEvento+"&megusta_foto="+idFoto+"&megusta_video="+idVideo);
}
