<!-- Hide script	    now = new Date	    expireDate = new Date	    expireDate.setMonth(expireDate.getMonth()+6)		lastVisit = new Date(cookieVal("pageVisit"))		document.cookie = "pageVisit="+now+";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 "1 January 1970"		}				function newCheck(yyyy,mm,dd) {			lastChgd = new Date(yyyy,mm-1,dd)						if (lastChgd.getTime() > lastVisit.getTime()) {				document.write("<IMG SRC='new.gif' ALT='NEW!'>")			}		}		function newWindow(pagename) {    box = window.open(pagename, 'box_win', 'width=250,height=250,left=0,top=0,scrollbars=yes');box.focus()}dayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")monName = new Array ("January","February","March","April","May","June","July","August","September", "October", "November","December")now = new Date//End hiding -->
