function XmlConnector(stringURL){
	
	this.url = stringURL;	
	this.RequestXml = '';
	
	if (window.XMLHttpRequest) {
        this.XMLReq = new XMLHttpRequest();	
		if(this.XMLReq.overrideMimeType){
			this.XMLReq.overrideMimeType('text/xml');
		}
        this.XMLReq.open("GET", this.url);
        this.XMLReq.send(null);			    
    // branch for IE/Windows ActiveX version
    } else if (window.ActiveXObject) {
        this.XMLReq = new ActiveXObject("Microsoft.XMLHTTP");
        if (this.XMLReq) {			
		   this.XMLReq.open("GET", this.url);
           this.XMLReq.send();			
        }
    }
	
	
}



