 var xmlHttp = new XMLHttpRequest();

//--- Создание нового объекта XMLHttpRequest ----------------------------------

var xmlHttp = false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
try {
  xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
  try {
    xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
  } catch (e2) {
    xmlHttp = false;
  }
}
@end @*/

if (!xmlHttp && typeof XMLHttpRequest != 'undefined') {
  xmlHttp = new XMLHttpRequest();
}

//--- Запрос на сервер --------------------------------------------------------

function rateVideo(fhgId,imgName,goodRatio,badRatio) {
  var url = "/rate.php?fhg_id="+fhgId+"&type="+imgName+"&r_good="+goodRatio+"&r_bad="+badRatio;
  xmlHttp.open("GET", url, true);
  xmlHttp.onreadystatechange = updatePage;
  xmlHttp.send(null);

}

//--- Обновляем страничку ------------------------------------------------------

function updatePage() {
  if (xmlHttp.readyState == 4) {
    var response = xmlHttp.responseText;
    document.getElementById('flvRatio').innerHTML = response;
  }
}
