function getPage(x){
  var xhr=null;
 
  if (window.XMLHttpRequest) {
	 xhr = new XMLHttpRequest();
  }
  else if (window.ActiveXObject) {
	 xhr = new ActiveXObject("Microsoft.XMLHTTP");
  }

  xhr.open("GET", "http://www.dacostadesign.com/work/getPage.php?&id="+x, false);
  xhr.send(null);
 
  obj = document.getElementById("module01_home");
  obj.innerHTML = xhr.responseText;
}