
function display_date(){

 date = new Date();

 var day_of_month = date.getDate();

 var month_number = date.getMonth();
 
 var year = date.getFullYear();

 var month = '';

 if(month_number == 0){month = 'January';}

 if(month_number == 1){month = 'February';}

 if(month_number == 2){month = 'March';}

 if(month_number == 3){month = 'April';}

 if(month_number == 4){month = 'May';} 

 if(month_number == 5){month = 'June';}

 if(month_number == 6){month = 'July';}

 if(month_number == 7){month = 'August';}

 if(month_number == 8){month = 'September';}

 if(month_number == 9){month = 'October';}

 if(month_number == 10){month = 'November';}

 if(month_number == 11){month ='December';}

 var date_to_show =  'Today is ' + month + ',' + day_of_month + '  ' + year; 
// var date_to_show =  day_of_month + '.' + month + '.' + year; 
 document.write('<font style="font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 11px;color: #FF0000;font-weight:bold;vertical-align: middle;">'+ date_to_show +'</font>');

}

display_date();
