        <!-- JavaScript for Current Date -->
        
<!-- hide me from other browsers
			function makeArray() {
				this.length = makeArray.arguments.length
				for (var j = 0; j < this.length; j++)
				this [j+1] = makeArray.arguments[j]
				}
	
			aMonth = new makeArray ("January","February","March","April","May","June","July","August","September","October","November","December")
			var now = new Date();
        	var thisDay = now.getDate();
      		var month = now.getMonth() + 1;
            thisMonth = aMonth[month]
      	    var thisYear = now.getFullYear();
        
       		document.write(thisMonth + " " + thisDay + ", " + thisYear)

// Date Stop  -->
			
