// JavaScript Document
// thienanth 20 09 2003
	var now = new Date();
	var month = "";
	var day = "";
	var first_date_num="";

    if (now.getDate() < 10)
    {
    	first_date_num="0";
	}
	else
	{
		first_date_num="";
	}
			
	switch (now.getDay())
	{
		case 0: day="Chủ Nhật ngày ";break;
		case 1: day="Thứ 2, ngày ";break;
		case 2: day="Thứ 3, ngày ";break;
		case 3: day="Thứ 4, ngày ";break;
		case 4: day="Thứ 5, ngày ";break;
		case 5: day="Thứ 6, ngày ";break;
		case 6: day="Thứ 7, ngày ";break;
	}
	
	switch (now.getMonth())
    {
		case  0: month=" tháng  01  năm ";break;
		case  1: month=" tháng  02  năm ";break;
		case  2: month=" tháng  03  năm ";break;
		case  3: month=" tháng  04  năm ";break;
		case  4: month=" tháng  05  năm ";break;
		case  5: month=" tháng  06  năm ";break;
		case  6: month=" tháng  07  năm ";break;
		case  7: month=" tháng  08  năm ";break;
		case  8: month=" tháng  09  năm ";break;
		case  9: month=" tháng  10  năm ";break;
		case 10: month=" tháng  11  năm ";break;
		case 11: month=" Tháng  12  Năm ";break;
	}
	var view =( day + " " + first_date_num + now.getDate() + " " +  month + " " + now.getFullYear());
	//document.write('<font color="#ffffff">'+ view+ '</font>');
document.write( view);
