function fetchSmsData(filedata,country,smsoperator)
{
	var xmlHttpReq = false;

	if (window.XMLHttpRequest) {				//Mozilla/Safari
		xmlHttpReq = new XMLHttpRequest();
		if (xmlHttpReq.overrideMimeType) {
			xmlHttpReq.overrideMimeType("text/xml");
		}
	} else if (window.ActiveXObject) {			//IE
		xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlHttpReq.open("POST",filedata, true);
	xmlHttpReq.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	xmlHttpReq.onreadystatechange = function() {
		if (xmlHttpReq.readyState == 4) {
			document.getElementById('smsinfo').innerHTML = '';
			if (smsoperator) {
				if (smsoperator != 0) document.getElementById('smsinfo').innerHTML = xmlHttpReq.responseText;
			} else {
				document.getElementById('smsops').innerHTML = xmlHttpReq.responseText;
			}
		}
	}
	xmlHttpReq.send("countrysel="+country+"&smsoperatorsel="+smsoperator);
}
