function datosServidor(){}datosServidor.prototype.iniciar=function(){try{this._xh=new XMLHttpRequest()}catch(C){var B=new Array("MSXML2.XMLHTTP.5.0","MSXML2.XMLHTTP.4.0","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP","Microsoft.XMLHTTP");var D=false;for(var A=0;A<B.length&&!D;A++){try{this._xh=new ActiveXObject(B[A]);D=true}catch(C){}}if(!D){return false}return true}};datosServidor.prototype.ocupado=function(){estadoActual=this._xh.readyState;return(estadoActual&&(estadoActual<4))};datosServidor.prototype.procesa=function(){if(this._xh.readyState==4&&this._xh.status==200){this.procesado=true}};datosServidor.prototype.enviar=function(A,B){if(!this._xh){this.iniciar()}if(!this.ocupado()){this._xh.open("GET",A,false);this._xh.send(B);if(this._xh.readyState==4&&this._xh.status==200){return this._xh.responseText}}return false};function _gr(B,A){remotos=new datosServidor;nt=remotos.enviar(B,"");document.getElementById(A).innerHTML=nt}function rate(B,D,C,A){remotos=new datosServidor;nt=remotos.enviar(C+"/rating/update.php?rating="+B+"&id="+D+"&option="+A);window.location.reload(false)};