<!-- Hide script from old browsers
//MBXUpdated.js
//Builds Html to add Updated image to main page items
//

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 "1 January 1970"
}

function updated(yyyy,mm,dd){
	lastChgd = new Date(yyyy,mm-1,dd)
	if (lastChgd.getTime() > lastVisit.getTime()) {
		document.write("<IMG src=updated.gif alt='[Updated!!]'>")
	}
}
// End hiding script from old browsers -->

