function swap(name){
	document.getElementById(name).style.backgroundColor='#FF9900';
}

function unswap(name){
	document.getElementById(name).style.backgroundColor='#CCCCCC';
}

function laad_renner(name){
	createXMLHttpRequest();
	xmlHttp.onreadystatechange=handleStateChange_laad_renner;
	xmlHttp.open("GET","pages/renner.php?action=detail&name="+name,true);
	xmlHttp.send(null);	
}

function handleStateChange_laad_renner(){
	if(xmlHttp.readyState==0){
		document.getElementById('team').innerHTML="<img src='images/ajaxloader.gif'/>";	
	}
	
	if(xmlHttp.readyState==1){
		document.getElementById('team').innerHTML="<img src='images/ajaxloader.gif'/>";	
	}
	
	if(xmlHttp.readyState==2){
		document.getElementById('team').innerHTML="<img src='images/ajaxloader.gif'/>";	
	}
	
	if(xmlHttp.readyState==3){
		document.getElementById('team').innerHTML="<img src='images/ajaxloader.gif'/>";	
	}
	if(xmlHttp.readyState==4){
		if(xmlHttp.status==200){
			document.getElementById('team').innerHTML=xmlHttp.responseText;
			
			
		}
	}
}