// ----------- Start Of Document

window.onload = function(){
	loadurl('/includes/posts.php', 'wp_posts');
	}; 

strTargetDiv = ''; 
function loadurl(dest, str1) {
	strTargetDiv = str1;
	if(document.getElementById(str1) != null){
		if(window.XMLHttpRequest){ // if Mozilla, Safari etc 
			xmlhttp = new XMLHttpRequest()
		}else if(window.ActiveXObject){ // if IE
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP")
		}
		if (dest.indexOf("?")>0){
			dest = dest + "&sid="+Math.random()
		} else {
			dest = dest + "?sid="+Math.random()
		}
		xmlhttp.onreadystatechange = triggered;
		xmlhttp.open("GET", dest);
		xmlhttp.send(null); 
	}
}
function triggered() {
     if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
		var txt = xmlhttp.responseText;
		var txtNod = document.createTextNode(txt);
		document.getElementById(strTargetDiv).style.display = '';
		document.getElementById(strTargetDiv).innerHTML = txt;
     }
}