// AJAX CALLS
function do_ajax_HTML(options) {
	// 	voor param's zie:
	//	http://docs.mootools.net/Request/Request.HTML
	// 	if(options.params!=null) {
	// 	hier nog wat checks!
	// options.method='get';
	// options.complete=do_onComplete;
	if (options['cache']!=true) {
		var i=options['url'].indexOf('?',0)+options['url'].indexOf('&',0); // komt er een & of ? voor?
		if (i>-2){
			options['url']=options['url']+'&';
		} else options['url']=options['url']+'?';
		options['url']=options['url']+'randcachevar='+(new Date()).getTime();
		options.url
	}
	var myHTMLRequest = new Request.HTML(options);
	myHTMLRequest.setHeader('X-Request','text/xhtml');
	myHTMLRequest.get();
}

function do_ajax_HTML_post(options,formID) {
	var myHTMLRequest = new Request.HTML(options);
	myHTMLRequest.post($(formID));
}