// JavaScript Document
function showdate(){
	today=new Date();
	thu=today.getDay();
	var thuten=""
	switch (thu)
	{
		case 0:
			thuten="Chủ nhật";
			break;
		case 1:
			thuten="Thứ hai";
			break;
		case 2:
			thuten="Thứ ba";
			break;
		case 3:
			thuten="Thứ tư";
			break;
		case 4:
			thuten="Thứ năm";
			break;
		case 5:
			thuten="Thứ sáu";
			break;
		default:
			thuten="Thứ bảy";
			break;
	}
	ngay=today.getDate();
	thang=today.getMonth();
	thang=thang+1;
	nam=today.getFullYear();
	//inra=thu+','+ngay+' '+thang+','+nam;
	document.write(thuten+' - '+ngay+'/'+thang+'/'+nam);
}

// JavaScript Document
function showdate2(){
	today=new Date();
	thu=today.getDay();
	var thuten=""
	switch (thu)
	{
		case 0:
			thuten="Sunday";
			break;
		case 1:
			thuten="Monday";
			break;
		case 2:
			thuten="Tuesday";
			break;
		case 3:
			thuten="Wednesday";
			break;
		case 4:
			thuten="Thursday";
			break;
		case 5:
			thuten="Friday";
			break;
		default:
			thuten="Saturday";
			break;
	}
	ngay=today.getDate();
	thang=today.getMonth();
	thang=thang+1;
	nam=today.getFullYear();
	//inra=thu+','+ngay+' '+thang+','+nam;
	document.write(thuten+', '+thang+'/'+ngay+'/'+nam);
}
