stpath = "http://www.adultsexbase.com";

function getXmlHttp(){
  var xmlhttp;
  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();
  }
  return xmlhttp;
}

function loadXMLDoc(url) {
	var xmlhttp = getXmlHttp()
	xmlhttp.open('GET', url, true);
	xmlhttp.onreadystatechange = function() {
//	  if (xmlhttp.readyState == 4) {
//	     if(xmlhttp.status == 200) {
//	       alert(xmlhttp.responseText);
//	     }
//	  }
	};
	xmlhttp.send(null);
}
function ststats(img)
{
  url = img.replace(/&amp;/, "&")
  try{
    loadXMLDoc(stpath+url);
  }catch(err){}
}


