<!--

	function GetXmlHttpObject(){  
		var xmlHttp=null;
		try{  
			// Firefox, Opera 8.0+, Safari  
			xmlHttp=new XMLHttpRequest();  
		}  
		catch(e){  
			// Internet Explorer  
			try{  
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");  
			}  
			catch(e){  
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");  
			}  
		}  
		return xmlHttp;  
	}  
	
	function XmlPost(QueryString, ResponsePage){  
		var xmlRequest = GetXmlHttpObject();
		xmlRequest.open("POST", ResponsePage, false);  
		xmlRequest.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=ISO-8859-1");
		xmlRequest.send(QueryString);
		return xmlRequest.responseText;
   }

	function encode(uri){  
	    if (encodeURIComponent){  
	        return encodeURIComponent(uri);  
	    }  
	  
	    else if (escape){  
	        return escape(uri);  
	    }  
	}  


//-->





