function xmlhttpPost(strURL,strResponse,level) {
		//alert('aaaaaaaaaaa');
    var xmlHttpReq = false;
    var self = this;

    if (window.XMLHttpRequest) {
        self.xmlHttpReq = new XMLHttpRequest();
    }
    else if (window.ActiveXObject) {
        self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
    }
	self.xmlHttpReq.open('GET',strURL, true);
	self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
	self.xmlHttpReq.onreadystatechange = function() {
        if (self.xmlHttpReq.readyState == 4) {
			temp = self.xmlHttpReq.responseText;
			sendResponse(strResponse,level);
		}
    }
    self.xmlHttpReq.send(null);
}

function sendResponse(strResponse,level){
		document.getElementById(level).innerHTML=temp;
		
}
