      var xmlHttpAP;
      try
        {
        // Firefox, Opera 8.0+, Safari
        xmlHttpAP=new XMLHttpRequest();
        }
      catch (e)
        {
        // Internet Explorer
        try
          {
          xmlHttpAP=new ActiveXObject("Msxml2.XMLHTTP");
          }
        catch (e)
          {
          try
            {
            xmlHttpAP=new ActiveXObject("Microsoft.XMLHTTP");
            }
          catch (e)
            {
            alert("Your browser does not support AJAX!");
            }
          }
        }

    function accountManager(returnPara) {
        var requestUri = document.URL.split("/");
		hostCheck = new RegExp("[a-z0-9]+\.asianproducts\.com");
		if (hostCheck.test(requestUri[2]))
		{
			var url = requestUri[0]+"//"+requestUri[2]+"/check_account.php?"+returnPara;
			xmlHttpAP.open("GET", url, true);
			xmlHttpAP.onreadystatechange = updatePage;
			xmlHttpAP.send(null);
		}
    }

    function updatePage() {
        if (xmlHttpAP.readyState == 4) {
            var response = xmlHttpAP.responseText;
            document.getElementById("showhere").innerHTML = response;
        }
    }
