function statPackTrk() {

	// Set Default Variables
	var refer = escape(document.referrer);
	var currURL = document.location.href;
	
	// Get Screen resolution
	var ScreenWidth=screen.width;
	var ScreenHeight=screen.height;
	var ScreenResolution=ScreenWidth+"x"+ScreenHeight;
	
	attr = '?details=' + _acdtls + '&refer=' + refer + '&currURL=' + currURL + '&screenRes=' + ScreenResolution;		// Create attr string
	var xmlhttp = false; 																								// Clear our fetching variable
	
	// Check for Active X
	try { 
		xmlhttp = new ActiveXObject('Msxml2.XMLHTTP'); // Try the first kind of active x object 
   	} catch (e) {
		try {
			xmlhttp = new ActiveXObject('Microsoft.XMLHTTP'); // Try the second kind of active x object
        } catch (E) {
			xmlhttp = false;
       	}
	}
    
    // If we were able to get a working active x object, start an XMLHttpRequest
	if (!xmlhttp && typeof XMLHttpRequest!='undefined') { xmlhttp = new XMLHttpRequest(); }
	
	// File that loads the data   
	var file = 'http://www.brmstatpack.com/track_modules/track_by_traffic.php'; 
	
	// Get the file
	xmlhttp.open('GET', file + attr, true);
	xmlhttp.onreadystatechange=function() {
		
		// Check if it is ready to receive data
		if (xmlhttp.readyState==4) { 					
			
			// The content data which has been retrieved
			var content = xmlhttp.responseText; 		
			
			// Make sure there is something in the content variable
			if (content) {}
		}
	}
	
	xmlhttp.send(null) // Nullify the XMLHttpRequest
	return;
}