var now = new Date();
var day_of_month = now.getDate();
var month = now.getMonth();
var year = now.getYear();
var str = "";


if (month == 0)
    str = "January " + day_of_month;
if (month == 1)
    str = "February " + day_of_month;
if (month == 2)
    str = "March " + day_of_month;
if (month == 3)
    str = "April " + day_of_month;
if (month == 4)
    str = "May " + day_of_month;
if (month == 5)
    str = "June " + day_of_month;
if (month == 6)
    str = "July " + day_of_month;
if (month == 7)
    str = "August " + day_of_month;
if (month == 8)
    str = "September " + day_of_month;
if (month == 9)
    str = "October " + day_of_month;
if (month == 10)
    str = "November " + day_of_month;
if (month == 11)
    str = "December " + day_of_month;

year += ((year < 1900) ? 1900 : 0);

str=str + ", " + year;

function checkStatus() {
   page = self.location.href;
   if (page != top.location.href) {
      top.location.href = page;
      return true;
      }
}