function xmlHTTPGet_xml(url, strResultFunc) {
	var xmlHttpReq = false;

	if (window.XMLHttpRequest) xmlHttpReq = new XMLHttpRequest(); // Everything that's not IE
	else if (window.ActiveXObject) xmlHttpReq = new ActiveXObject("Msxml2.XMLHTTP"); // IE

	domain = 'http://www.thebackstrap.com/';
	xmlHttpReq.onreadystatechange = function() {
		if(xmlHttpReq.readyState == 4) {
			eval(strResultFunc + '(xmlHttpReq.responseXML);');
		}
	}
	xmlHttpReq.open('GET', domain+url, true);
	xmlHttpReq.send(null);
}

function xmlHTTPGet_text(url, strResultFunc) {
	var xmlHttpReq = false;

	if (window.XMLHttpRequest) xmlHttpReq = new XMLHttpRequest(); // Everything that's not IE
	else if (window.ActiveXObject) xmlHttpReq = new ActiveXObject("Msxml2.XMLHTTP"); // IE

	domain = 'http://www.thebackstrap.com/';
	xmlHttpReq.onreadystatechange = function() {
		if(xmlHttpReq.readyState == 4) {
			eval(strResultFunc + '(xmlHttpReq.responseText);');
		}
	}
	xmlHttpReq.open('GET', domain+url, true);
	xmlHttpReq.send(null);
}