function laad_sponsors(){
	createXMLHttpRequest();
	xmlHttp.onreadystatechange=handleStateChange_laad_sponsors;
	xmlHttp.open("GET","pages/sponsors_code.php?action=show_sponsors",true);
	xmlHttp.send(null);

}

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