function addGame(u,a,g,c,t,e,p) {
  strURL = "/ajax/addGame.php";
  var xmlHttpReq = false;
  var self = this;
  // Mozilla/Safari
  if (window.XMLHttpRequest) { self.xmlHttpReq = new XMLHttpRequest(); }
  // IE
  else if (window.ActiveXObject) { self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP"); }
  self.xmlHttpReq.open('POST', strURL, true);
  self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  self.xmlHttpReq.onreadystatechange = function() {
    if (self.xmlHttpReq.readyState == 4) { updatepage(e,p,self.xmlHttpReq.responseText,false); $j('.game_info_button a[rel=tipsy]').tipsy({title:'tooltip',html:true,gravity:$j.fn.tipsy.autoWE,opacity:0.9}); }
  }
  self.xmlHttpReq.send('a=' + escape(a) + '&u=' + escape(u) + '&g=' + escape(g) + '&c=' + escape(c) + '&t=' + escape(t));
}
function updatepage(elemID,parent,str,show){ if (str) { document.getElementById(elemID).innerHTML = str; }; }
document.write('<scr' + 'ipt language="javascript" src="/files/js/game.php?g=1533&c=&r=' + (Math.round((Math.random()*99999999)+1)) + '"></sc' + 'ript>');