function monthName(anydate) {   //-- Returns the month name from any date object.   var xx = anydate.getMonth()+1   var nm=""   if (xx==1){nm="Jan"}if (xx==2){nm="Feb"}if (xx==3){nm="March"}   if (xx==4){nm="April"}if (xx==5){nm="May"}if (xx==6){nm="June"}   if (xx==7){nm="July"}if (xx==8){nm="Aug"}if (xx==9){nm="Sept"}   if (xx==10){nm="Oct"}if (xx==11){nm="Nov"}if (xx==12){nm="Dec"}   return nm}function weekDay(anydate) {   //-- Returns the day name from any date object.   var xx = anydate.getDay()+1   var dn = ""   if (xx==1){dn="Sun"}if (xx==2){dn="Mon"}if (xx==3){dn="Tues"}   if (xx==4){dn="Wed"}if (xx==5){dn="Thur"}   if (xx==6){dn="Fri"} if (xx==7){dn="Sat"}   return dn}	date= new Date();        strDate = weekDay(date);	strDate += ", ";	strDate += monthName(date);	strDate += " ";	strDate += date.getDate();	strDate += ", ";	strDate += date.getFullYear();	