<!--
expireDate = new Date;
expireDate.setMonth(expireDate.getMonth()+1);
hitCount = parseInt(cookieVal("pageHit"));
hitCount++;
document.cookie = "pageHit="+hitCount+";expires="+expireDate.toGMTString()
function cookieVal(cookieName){
	thisCookie = document.cookie.split("; ")
	for(i=0; i<thisCookie.length; i++){
		if(cookieName == thisCookie[i].split("=")[0]){
			return thisCookie[i].split("=")[1]
		}
	}
	return 0		
}
//-->