// JavaScript Document
<!--
var xmlHttp;
function createXMLHttpRequest() {
	if (window.ActiveXObject) {
	xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	else if (window.XMLHttpRequest) {
	xmlHttp = new XMLHttpRequest();
	}
}
function startCountRequest(value1) {
	createXMLHttpRequest();
	xmlHttp.onreadystatechange = handleStateChange;
	
	//得到访问来源
	var accessSrc = document.referrer;
	accessSrc = accessSrc.replace('?',']');
	value1 = value1 + "&accessSrc="+accessSrc;	
	xmlHttp.open("POST", "/webd/public/countAccess.jsp?pageName="+value1, true);
        xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	xmlHttp.send(null);
}
function handleStateChange() {
}
-->