function gatherStats(){
<!--
	var requiredMajorVersion = 5;
	var requiredMinorVersion = 0;
	var requiredRevision = 0;
	
	// Version check based upon the values entered above in "Globals"
	var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	// Check to see if the version meets the requirements for playback
	if (hasReqestedVersion) {
		var isFlash = hasReqestedVersion;
	} else {  // flash is too old or we can't detect the plugin
		var isFlash = 'no';
	}
	var thisUrl = window.location.href;
    var refUrl = parent.document.referrer;
	document.write("<img height='1' width='1' src='stats/scripts/data_collect.php?thisUrl=" + thisUrl +"&refUrl=" + refUrl + "&flash=" + isFlash + "&res=" + screen.width + "x" + screen.height + "' />");
//-->
}
