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);			    
    } 
	else if (window.ActiveXObject) 
	{
        this.XMLReq = new ActiveXObject("Microsoft.XMLHTTP");
        if (this.XMLReq) 
		{			
		   this.XMLReq.open("GET", this.url);
           this. XMLReq.send();			
        }
    }
}