

<script type="text/javascript">
function ajaxFunction(args){
	var ajaxRequest;  // The variable that makes Ajax possible!
	
	try{
		// Opera 8.0+, Firefox, Safari
		ajaxRequest = new XMLHttpRequest();
	} catch (e){
		// Internet Explorer Browsers
		try{
			ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try{
				ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e){
				// Something went wrong
				alert("Your browser broke!");
				return false;
			}
		}
	}
	// Create a function that will receive data sent from the server
	ajaxRequest.onreadystatechange = function(){
		if(ajaxRequest.readyState == 4){
			switch(args['type']){
				case 'innerHTML':
					document.getElementById(args['id']).innerHTML=ajaxRequest.responseText;
				  	break;
				case 'return':
					return_value = ajaxRequest.responseText;
					break;
				default:
					alert('error')
			}
		}
	}
	ajaxRequest.open("GET",args['source'], true);
	ajaxRequest.send(null);
}
</script>

<script type="text/javascript">
window.onload=function(){
	//get_laatste_tijden();
}
function get_overzicht_rijders(){
	var args=new Array();
		args['source']='http://www.yvz.nl/wordpress/wp-content/plugins/wedstrijdadministratie/sql/ajax.php';
		args['type']='innerHTML';
		args['id']='rijders';
	ajaxFunction(args);
}
</script>



<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: PR op 1000 meter voor Yara van Kerkhof in Eindhoven</title>
	<atom:link href="http://www.yvz.nl/shorttrack/verslagen-shorttrack/pr-op-1000-meter-voor-yara-van-kerkhof-in-eindhoven/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yvz.nl/shorttrack/verslagen-shorttrack/pr-op-1000-meter-voor-yara-van-kerkhof-in-eindhoven/</link>
	<description>de complete schaatsvereniging voor Zoetermeer en Omstreken</description>
	<lastBuildDate></lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
</channel>
</rss>

