var xmlHttpReq = null;
var self = this;
if (window.XMLHttpRequest) //Mozilla / Safari
	{self.xmlHttpReq = new XMLHttpRequest();}
else if (window.ActiveXObject) //IE
	{self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");}