<!-- 

	now = new Date
	thisYr = now.getYear()
	if (thisYr < 1900) {
		thisYr = thisYr+1900
	}
	nextYr = thisYr + 1

	birthday = new Date(thisYr,2,15)
	if (birthday.getTime() < now.getTime()) {
		birthday.setYear(nextYr)
	}

	function dayToDays(inTime) {
		return (inTime.getTime() / (1000 * 60 * 60 * 24))
	}

	function daysTill(inDate) {
		return (Math.ceil(dayToDays(inDate) - dayToDays(now)))
	}

	



      function generate_address( username, hostname, domain ) {
        var atsign = "&#64;";
        var addr = username + atsign + hostname + domain;
        document.write( 
          "<" + "a" + " " + "href=" + "mail" + "to:" + addr + ">" +
          addr +
          "<\/a>");
      }
	  
	  
	 -->	