function y2k(number) {
return (number < 1000) ? number + 1900 : number;
}

function show_date() {

var today = new Date();
var the_day = today.getDate();
var the_month = today.getMonth();
var the_year = y2k(today.getYear());

if(the_month == "0")
month = "January";
else
if(the_month == "1")
month = "February";
else
if(the_month == "2")
month = "March";
else
if(the_month == "3")
month = "April";
else
if(the_month == "4")
month = "May";
else
if(the_month == "5")
month = "June";
else
if(the_month == "6")
month = "July";
else
if(the_month == "7")
month = "August";
else
if(the_month == "8")
month = "September";
else
if(the_month == "9")
month = "October";
else
if(the_month == "10")
month = "November";
else
if(the_month == "11")
month = "December";

var TodaysDate ="<p style='margin-top:0;'>"+month+" "+the_day+", "+the_year +"</p>";

document.write(TodaysDate);
}

