var xmlHttp

function gatherAD(type,gid,uid)
{
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request")
		return
	}
	type = escape(type);
	gid = escape(gid);
	uid = escape(uid);
	var url="/sub/gatherad.php?type=" + type + "&id=" + gid + "&uid=" + uid;
	xmlHttp.onreadystatechange=stateChangedGatherAD
	xmlHttp.open("GET",url,true)
	xmlHttp.send(null)
}
function stateChangedGatherAD()
{
	if(xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){ document.getElementById("gatherplayerbox").innerHTML=xmlHttp.responseText }
}
