var pagename = window.location.pathname;
var lastVisit = new Date(cookieVal(pagename));
var now = new Date;
var expireDate = new Date;
expireDate.setMonth(expireDate.getMonth()+6);
document.cookie = pagename+"="+now+";expires=" + expireDate.toGMTString();
		
function cookieVal(cookieName) {
        if (document.cookie != "") {
		thisCookie = document.cookie.split("; ");
		for (i=0; i<thisCookie.length; i++) {
			if (cookieName == thisCookie[i].split("=")[0]) {
				return thisCookie[i].split("=")[1];
		        }
		}
	}
	var newDate = new Date;
	newDate.setMonth(newDate.getMonth()-6);
	return newDate.toGMTString();
}
		
function newCheck(yyyy,mm,dd) {
	var lastChgd = new Date(yyyy,mm-1,dd);
	if (lastChgd.getTime() > lastVisit.getTime()) {
		document.write("<img src='http://members.purespeed.com/~mg/images/new.gif' width=31 height=12 alt='new' />");
	}
}
