// Requires AJAX tool includes

function popularityTracker(theFile)
	{
		// Update the download counter for the file name
		qString = "file=" + theFile;

		makeXMLHTTP();  
		
		if(req) {
			req.open("POST", "/includes/ProjectCount.asp", true);
			req.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");
			req.send(qString);
			
		}
	}		

