function getCurDate(){
	var the_date = new Date();
	
	var the_year = the_date.getYear();
	if(the_year < 1900) the_year += 1900; 
	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 = "Chủ nhật";
		break;
	case 1:
		the_first = "Thứ hai";
		break;
	case 2:
		the_first = "Thứ ba"; 
		break;
	case 3:
		the_first = "Thứ tư"; 
		break;
	case 4:
		the_first = "Thứ năm"; 
		break;
	case 5:
		the_first = "Thứ sáu"; 
		
		break;
	case 6:
		the_first = "Thứ bảy"; 
		break;
	}
	var the_seccond = "";
	switch (the_month) {
		case 0:
		the_second = "/1";
		break;
	case 1:
		the_second = "/2";
		break;
	case 2:
		the_second = "/3";
		break;
	case 3:
		the_second = "/4";
		break;
	case 4:
		the_second = "/5";
		break;
	case 5:
		the_second = "/6";
		break;
	case 6:
		the_second = "/7";
		break;
	case 7:
		the_second = "/8";
		break;
	case 8:
		the_second = "/9";
		break;
	case 9:
		the_second = "/10";
		break;
	case 10:
		the_second = "/11";
		break;
	case 11:
		the_second = "/12";
		break;
	}
	document.write(" Hôm nay, "+the_first+", "+the_day+""+the_second+"/"+the_year);
}