 self.name = "mtien";
 var the_date = new Date();
 var the_year = the_date.getYear();
 var the_month = the_date.getMonth();
 var the_day = the_date.getDate();
 var the_today = the_date.getDay();
 var the_first = "";
 switch (the_today) 
 {
 	case 0:
		the_first = "Sunday";
		break;
	case 1:
		the_first = "Monday ";
		break;
	case 2:
		the_first = "Tuesday"; 
		break;
	case 3:
		the_first = "Wednesday"; 
		break;
	case 4:
		the_first = "Thursday"; 
		break;
	case 5:
		the_first = "Friday"; 
		break;
	case 6:
		the_first = "Saturday"; 
		break;
 }
 var the_seccond = "";
 switch (the_month) 
 {
 	case 0:
		the_second = "January";
		break;
	case 1:
		the_second = "February";
		break;
	case 2:
		the_second = "March";
		break;
	case 3:
		the_second = "April";
		break;
	case 4:
		the_second = "May";
		break;
	case 5:
		the_second = "June";
		break;
	case 6:
		the_second = "July";
		break;
	case 7:
		the_second = "August";
		break;
	case 8:
		the_second = "September";
		break;
	case 9:
		the_second = "October";
		break;
	case 10:
		the_second = "November";
		break;
	case 11:
		the_second = "December";
		break;
 }
switch (the_day)
{
	case 1:
		the_day=the_day+"st";
		break;
	case 2:
		the_day=the_day+"rd";
		break;
	case 3:
		the_day=the_day+"nd";
		break;		
	default: the_day=the_day+"th";
}
  document.write(":: "+the_first+", "+the_second+" "+the_day+",  "+the_year);
