function trackAction(myAction){
	if(myAction.substr(0,1) != '/'){
		myAction = '/'+myAction;
	}

	//Google Analytics Method
	if(enableGA){
		//alert(myAction);
		urchinTracker(myAction);
	}
	//Page Request Method
	var myURL = '/tracking.html'+myAction;
	silentPageRequest(myURL);
}
function silentPageRequest(myURL){
	loadXMLDoc(myURL);
}
function loadXMLDoc(url){
    // branch for native XMLHttpRequest object
    if (window.XMLHttpRequest) {
        req = new XMLHttpRequest();
        req.onreadystatechange = processReqChange;
        req.open("GET", url, true);
        req.send(null);
    // branch for IE/Windows ActiveX version
    } else if (window.ActiveXObject) {
        req = new ActiveXObject("Microsoft.XMLHTTP");
        if (req) {
            req.onreadystatechange = processReqChange;
            req.open("GET", url, true);
            req.send();
        }
    }
}
function processReqChange(){
    // only if req shows "complete"
    if (req.readyState == 4) {
        // only if "OK"
        if (req.status == 200) {
            // ...processing statements go here...
        } else {
            // uh oh bad things happened
        }
    }
}
