function xmlhttpPost(strURL ,queryString , Reciever)
 {
	var xmlHttpReq = false;
    	var self = this;
	    if (window.XMLHttpRequest)   {// Mozilla/Safari
        					self.xmlHttpReq = new XMLHttpRequest();
						if (self.xmlHttpReq.overrideMimeType) 
            						self.xmlHttpReq.overrideMimeType('text/xml');
    			 	}
    				else if (window.ActiveXObject) 
    				{// IE
				        self.xmlHttpReq = new ActiveXObject("Msxml2.XMLHTTP");
    				}
    
    	self.xmlHttpReq.open('GET', strURL+'?'+queryString, true);
    	self.xmlHttpReq.setRequestHeader('Content-Type', 'text/xml; charset=TIS-620');
    	self.xmlHttpReq.onreadystatechange = function() 
    	{
        		if (self.xmlHttpReq.readyState == 4) 
        		{
            			//alert("X"+self.xmlHttpReq.responseText);
            			Reciever(self.xmlHttpReq.responseXML);
        		}
    	}
    	self.xmlHttpReq.send('');
}

function xmlhttpGetText(strURL ,queryString , Reciever)
 {
	var xmlHttpReq = false;
    	var self = this;
	    if (window.XMLHttpRequest)   {// Mozilla/Safari
        					self.xmlHttpReq = new XMLHttpRequest();
						if (self.xmlHttpReq.overrideMimeType) 	self.xmlHttpReq.overrideMimeType('text/xml');
    			 	}
    				else if (window.ActiveXObject) 
    				{// IE
				        self.xmlHttpReq = new ActiveXObject("Msxml2.XMLHTTP");
    				}
    
    	self.xmlHttpReq.open('GET', strURL+'?'+queryString, true);
    	self.xmlHttpReq.setRequestHeader('Content-Type', 'text/html; charset=TIS-620');
    	self.xmlHttpReq.onreadystatechange = function() 
    	{
        		if (self.xmlHttpReq.readyState == 4) 
        		{
            			Reciever(self.xmlHttpReq.responseText);
        		}
    	}
    	self.xmlHttpReq.send('');
}



function updatepage(str){
    document.getElementById("result").innerHTML = str;
}
