function get_xmlhttp() {
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 enviar(xmlhttp,metodo,url,async,callback) {
 xmlhttp.open(metodo, url,async);
 xmlhttp.onreadystatechange=function() {
  if (xmlhttp.readyState==4) {
   callback(xmlhttp)
  }
 }
 xmlhttp.send(null)
}
function famsvote(juego,voto,lang) {
xmlhttp=get_xmlhttp()
enviar(xmlhttp,"GET","http://"+document.domain+"/vote.php?id="+juego+"&vote="+voto+"&lang="+lang,true,recibirRespuesta);
}
function recibirRespuesta(xmlhttp) {
if(xmlhttp.responseText!='')
	document.getElementById("vote").innerHTML=xmlhttp.responseText
}