function getData_get(getParm, whereToPut, urlfile, loadingId) {
	loadProgress("y", loadingId); 
   var oXmlHttp = zXmlHttp.createRequest();
   oXmlHttp.open("get", urlfile + getParm, true);
   oXmlHttp.onreadystatechange = function () {
   	if (oXmlHttp.readyState == 4) {
       	  if (oXmlHttp.status == 200) {
               displayData_get(oXmlHttp.responseText, whereToPut);
			   loadProgress("n", loadingId);
           } else {
               displayData_get("An error occurred: " + oXmlHttp.statusText, whereToPut);
           }
       }            
   };
   oXmlHttp.send(null);
}
        
function displayData_get(sText, whereToPut){
   var divContainer = document.getElementById(whereToPut);
   divContainer.innerHTML = sText;
}