
function loadDataVisible(_url, _div){
	var xmlHttp = false;
	try {
		xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
	} catch(e) {
		try {
			xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
		} catch(e) {
			xmlHttp  = false;
		}
	}


	if (!xmlHttp  && typeof XMLHttpRequest != 'undefined') {
		xmlHttp = new XMLHttpRequest();
	}	 if (xmlHttp) {
		 document.getElementById(_div).innerHTML = "http://www.soulrider.com/img/img/ajax-loader.gif";
		 xmlHttp.open('GET', _url, true);
		 xmlHttp.onreadystatechange = function () {
			 if (xmlHttp.readyState == 4) {
				 document.getElementById(_div).innerHTML = xmlHttp.responseText;
			 }
		 };
		 xmlHttp.send(null);
	 }
}

function loadData(_url, _div)
{
	var xmlHttp = false;
	
	try {
	    xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
	} catch(e) {
	    try {
	        xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
	    } catch(e) {
	        xmlHttp  = false;
	    }
	}
	if (!xmlHttp  && typeof XMLHttpRequest != 'undefined') {
	    xmlHttp = new XMLHttpRequest();
	}
	 if (xmlHttp) {
	     xmlHttp.open('GET', _url, true);
	     xmlHttp.onreadystatechange = function () {
	         if (xmlHttp.readyState == 4) {
		             document.getElementById(_div).innerHTML = xmlHttp.responseText;
	         }
	     };
	     xmlHttp.send(null);
	 }
}

function ansyncCall(_url)
{
	
	var xmlHttp = false;
	
	try {
	    xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
	} catch(e) {
	    try {
	        xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
	    } catch(e) {
	        xmlHttp  = false;
	    }
	}
	if (!xmlHttp  && typeof XMLHttpRequest != 'undefined') {
	    xmlHttp = new XMLHttpRequest();
	}
	
 if (xmlHttp) {
     xmlHttp.open('GET', _url, true);
     xmlHttp.onreadystatechange = function () {
         if (xmlHttp.readyState == 4) {
         }
     };
     xmlHttp.send(null);
 }
}




