// JavaScript Document
var xmlHttp;

function createXMLHttpRequest(){
	if(window.ActiveXObject){
		xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
	}else if(window.XMLHttpRequest){
		xmlHttp = new XMLHttpRequest();
	}
}
function loaddata(){
	createXMLHttpRequest();
	xmlHttp.open("GET",'./ajax/portfolio.php',true);
	xmlHttp.onreadystatechange = function(){
		if(xmlHttp.readyState == 4){
			if(xmlHttp.status == 200){
				document.getElementById("portDisplay").setAttribute("align","center");
				document.getElementById("portDisplay").innerHTML = xmlHttp.responseText;
			}
		}else{
			document.getElementById("portDisplay").setAttribute("align","center");
			document.getElementById("portDisplay").innerHTML = '<tr><td><img src="img/ajaxloader.gif" align="absmiddle"></td></tr>';
		}
	};			
	xmlHttp.send(null);
}

