var now = new Date();
var the_day_array = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
var the_month_array = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
var the_day_name = now.getDay();

function getNiceDate()
{
   var the_month = now.getMonth();
   var the_day = now.getDate();
   var the_year = now.getYear();
   var the_fixed_year = Y2K(the_year);
   var the_nice_date = the_month_array[the_month] + " " + the_day + ", " + the_fixed_year;
   return the_nice_date;
}

function Y2K(the_date)
{
   if (the_date < 1000)
   {
      the_date = the_date + 1900;
   }
   return the_date;
}

function visitSite(the_site)
{
   window.location = the_site;
}