function xmlhttpPost(strURL, cmpID, sect) {
		var xmlHttpReq = false;
		var self = this;				
		var queryCmpID = cmpID;
		
		var section = sect;
		
		// Mozilla/Safari
		if (window.XMLHttpRequest) {
			self.xmlHttpReq = new XMLHttpRequest();
		}
		// IE
		else if (window.ActiveXObject) {
			self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
	}
	self.xmlHttpReq.open('POST', strURL, true);
	self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');						

	self.xmlHttpReq.onreadystatechange=function() { 
		if( self.xmlHttpReq.readyState == 4) {
			updatepage(self.xmlHttpReq.responseText, section);
		}
	}
	self.xmlHttpReq.send(getquerystring(cmpID));
}
	
function getquerystring(cmpID) {
	//qstr = 'param=' + escape(type);
	qstr = 'cmpID=' + escape(cmpID);
	return qstr;
}
	
function updatepage(str, sect) {
	document.getElementById(sect).innerHTML=str;
}
