function loadNews() {
	var url = "ajax/nieuws.php";
	var postData = "";
	
	var handleSuccess = function(o) {
		if (o.responseText !== undefined) {
			YAHOO.util.Dom.get("newsLinks").innerHTML = o.responseText;
			var h1 = YAHOO.util.Dom.get("newsLinks").offsetHeight + 60;
			var h2 = parseInt(YAHOO.util.Dom.get("spotlightBoxInner").clientHeight);
			if (h1 > h2) {
				YAHOO.util.Dom.get("newsBoxInner").style.height = h1 + "px";
				YAHOO.util.Dom.get("spotlightBoxInner").style.height = h1 + "px";
			}
		}
	}
	
	var handleFailure = function(o) {
	}

	var callback = {
		success: handleSuccess,
		failure: handleFailure
	};

	var request = YAHOO.util.Connect.asyncRequest('POST', url, callback, postData);
}
