var xmlHttp

function cupChangeKlan(cid)
{
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request")
		return
	}
	cid = escape(cid);
	var url="/sub/cup2/editcup/changeklan.php?action=true&cid=" + cid;
	url=url+"&klan1=" + escape( document.getElementById("klan1").value );
	url=url+"&klan2=" + escape( document.getElementById("klan2").value );
	xmlHttp.open("GET",url,true);
	xmlHttp.onreadystatechange=stateChangedDoChangeKlan
	xmlHttp.send(null)
}
function stateChangedDoChangeKlan()
{
	if(xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){ document.getElementById("cupAdminBox").innerHTML=xmlHttp.responseText }
}
