var aceDate=new Date()
var aceYear=aceDate.getYear()
if (aceYear < 1000)
aceYear+=1900
var aceDay=aceDate.getDay()
var aceMonth=aceDate.getMonth()+1
if (aceMonth<10)
aceMonth="0"+aceMonth
var aceDayMonth=aceDate.getDate()
if (aceDayMonth<10)
aceDayMonth=aceDayMonth
if(aceMonth == 1)
{
cpMonth = "January";
}
if(aceMonth == 2)
{
cpMonth = "February";
}
if(aceMonth == 3)
{
cpMonth = "March";
}
if(aceMonth == 4)
{
cpMonth = "April";
}
if(aceMonth == 5)
{
cpMonth = "May";
}
if(aceMonth == 6)
{
cpMonth = "June";
}
if(aceMonth == 7)
{
cpMonth = "July";
}
if(aceMonth == 8)
{
cpMonth = "August";
}
if(aceMonth == 9)
{
cpMonth = "September";
}
if(aceMonth == 10)
{
cpMonth = "October";
}
if(aceMonth == 11)
{
cpMonth = "November";
}
if(aceMonth == 12)
{
cpMonth = "December";
}
document.write("<font color='ffffff' face='Arial' size='2'>"+cpMonth+" "+aceDayMonth+", "+aceYear+"</font></small>  ")