function dateDump()	{

var now = new Date();
var monthName = now.getMonth() + 1;
var dayNumber = now.getDate();
var yearNumber = now.getYear();



if(monthName==1) Month="January";
if(monthName==2) Month="February";
if(monthName==3) Month="March";
if(monthName==4) Month="April";
if(monthName==5) Month="May";
if(monthName==6) Month="June";
if(monthName==7) Month="July";
if(monthName==8) Month="August";
if(monthName==9) Month="September"
if(monthName==10) Month="October";
if(monthName==11) Month="November";
if(monthName==12) Month="December";
if(yearNumber<2000) yearNumber = 1900+yearNumber;
/*
document.open();
 document.write(  dayNumber ); */   // use this to when script is embedded in the page
return( dayNumber );
}
