var xmlHttp

function cupAdminMenu(str,id)
{
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request")
		return
	}
	str = escape(str)
	var url="/sub/cup2/ajax/editcup.php"
	url=url+"?sub="+str
	url=url+"&id="+id
	url=url+"&sid="+Math.random()
	xmlHttp.onreadystatechange=stateChangedCupAdminMenu
	xmlHttp.open("GET",url,true)
	xmlHttp.send(null)
}
function stateChangedCupAdminMenu()
{
	if(xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
	{
		document.getElementById("cupAdminBox").innerHTML=xmlHttp.responseText;
	}
	else
	{
		//document.getElementById("loader").style.display = "";
		//document.getElementById("loader").innerHTML= "<img src=\"/js/images/loading.gif\" alt=\"Loading\"><br />Laddar...";
	}

}
