var xmlHttp

function cupAcceptKlan(id,cid)
{
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request")
		return
	}
	id = escape(id)
	cid = escape(cid)
	var url="/sub/cup2/editcup/acceptKlan.php"
	url=url+"?id="+id
	url=url+"&cid="+cid
	xmlHttp.onreadystatechange=stateChangedCupAcceptKlan
	xmlHttp.open("GET",url,true)
	xmlHttp.send(null)
}
function stateChangedCupAcceptKlan()
{
	if(xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){ document.getElementById("cupAdminBox").innerHTML=xmlHttp.responseText }
}

function cupNekaKlan(id,cid)
{
	xmlHttp=GetXmlHttpObject()    
	if (xmlHttp==null)      
	{         
		alert ("Browser does not support HTTP Request")
		return       
	}                 
	id = escape(id)
	cid = escape(cid)
	var url="/sub/cup2/editcup/nekaKlan.php"
	url=url+"?id="+id
	url=url+"&cid="+cid
	xmlHttp.onreadystatechange=stateChangedCupNekaKlan
	xmlHttp.open("GET",url,true)                    
	xmlHttp.send(null)             
}                               
function stateChangedCupNekaKlan()
{                                 
	if(xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){ document.getElementById("cupAdminBox").innerHTML=xmlHttp.responseText }
}
