function loadPage(target_el_name, target_url) {
	target_el = document.getElementById(target_el_name);
	var xmlHttp;
	try {
		// Firefox, Opera 8.0+, Safari
		xmlHttp=new XMLHttpRequest();
	} catch (e) {
		// Internet Explorer
		try {
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e) {
				alert("Your browser does not support AJAX! JODEUHH");
				return false;
			}
		}
	}
	//target_el.setAttribute("ajax_loading", 'bla');
	
	xmlHttp.onreadystatechange = function() {
		if (xmlHttp.readyState == 4) {
			if (xmlHttp.status == 200) {
				target_el.innerHTML = xmlHttp.responseText;
				//var regex = /<script(\s[^>]*)?>([\s\S]*?)<\/script>/gi, match;
				//while (match = regex.exec(xmlHttp.responseText)) {
				//	window.execScript(match[2], 'javascript');
				//}

				//target_el.setAttribute("ajax_loading", 'done');
			} else {
				target_el.innerHTML = "AJAX ERROR JODEUHH!";
			}
		} else {
		}
	}
		
	//alert(target_url);
	xmlHttp.open("GET", target_url, true);
	xmlHttp.send(null);
	return target_el;
}
