function showResponseData(url) {

	var xmlHttp = null;
	
	//Create the xmlHttp object to use in the request 
	xmlHttp = GetXmlHttpObject();

	//Send the xmlHttp get to the specified url
	xmlHttp.onreadystatechange = function() {
		//readyState of 4 or 'complete' represents that data has been returned 
		if (xmlHttp.readyState == 4 || xmlHttp.readyState == 'complete') {
			if (xmlHttp.status == 200) {
				//Gather the results from the callback 
				var str = xmlHttp.responseText;

				document.getElementById("submitDiv").innerHTML = str;

			}
		} else {
			document.getElementById("submitDiv").innerHTML = "<img src='images/loader.gif' width='220' height='19' />"
		}
	};
	xmlHttp.open('GET', url, true);
	xmlHttp.send(null);
}

// Return as XmlHttpObject object
function GetXmlHttpObject(){ 
	var objXmlHttp=null;
	try{
		objXmlHttp = window.XMLHttpRequest?new XMLHttpRequest():new ActiveXObject("Msxml2.XMLHTTP");
	}catch(e){ 
		alert('object could not be created. Verify that active scripting and activeX controls are enabled'); 
	}
	return objXmlHttp; 
}