//dynamicly Display Date//new Date Object and label arraysnow = new DatedayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")monthName = new Array ("January","February","March","April","May","June","July","August","September","October","November","December")//calling functionfunction todaysDate() {	return dayName[now.getDay()] + ", " + monthName[now.getMonth()] + " " + now.getDate() + ", " + now.getFullYear()}
