var validate_html = function() {
	var uri = document.getElementById('exlink').getAttribute('href');
	new Ajax('http://cssneustart.de/x/validate_html.php',
		{method: 'post',
		postBody: 'uri='+uri,
		update: 'htmlval',
		onFailure:function(){},
		onComplete:function(){
			validate_css();
		}
		}
	).request();
}

var validate_css = function() {
	var uri = document.getElementById('exlink').getAttribute('href');
	new Ajax('http://cssneustart.de/x/validate_css.php',
		{method: 'post',
		postBody: 'uri='+uri,
		update: 'cssval',
		onFailure:function(){},
		onComplete:function(){}
		}
	).request();
}

window.onDomReady(validate_html);