// JavaScript Document
function ajaxFunction(){var a;try{a=new XMLHttpRequest}catch(c){try{a=new ActiveXObject("Msxml2.XMLHTTP")}catch(b){try{a=new ActiveXObject("Microsoft.XMLHTTP")}catch(d){alert("Your browser does not support AJAX!");return false}}}return a}function showRateBox(a){var c=document.getElementById("ratingBox");c.style.display=a==1?"block":"none"}
function rateGame(a,c){ajax=ajaxFunction();ajax.onreadystatechange=function(){rateGame_stateChanged()};var b=baseDir+"inc/ajax-rating.php";b=b+"?id="+a;b=b+"&amp;vote="+c;ajax.open("GET",b,true);ajax.send(null)}function rateGame_stateChanged(){var a=document.getElementById("rateBox");if(ajax.readyState==4)a.innerHTML=ajax.responseText};