function date_vn() {
	<!--
	today = new Date(); 
	weekday = today.getDay();
	if (weekday == 6) document.write('Th&#7913; b&#7843;y');
	if (weekday == 0) document.write('Ch&#7911; nh&#7853;t');
	if (weekday == 1) document.write('Th&#7913; hai');
	if (weekday == 2) document.write('Th&#7913; ba');
	if (weekday == 3) document.write('Th&#7913; t&#432;');
	if (weekday == 4) document.write('Th&#7913; n&#259;m');
	if (weekday == 5) document.write('Th&#7913; sáu');
	document.write(', ');
	date = today.getDate(); 
	if (date < 10) 	document.write('0' + date);
	else document.write(date);
	
	month = today.getMonth();
	if (month == 0) document.write(' - 01');
	if (month == 1) document.write(' - 02');
	if (month == 2) document.write(' - 03');
	if (month == 3) document.write(' - 04');
	if (month == 4) document.write(' - 05');
	if (month == 5) document.write(' - 06');
	if (month == 6) document.write(' - 07');
	if (month == 7) document.write(' - 08');
	if (month == 8) document.write(' - 09');
	if (month == 9) document.write(' - 10');
	if (month == 10) document.write(' - 11');
	if (month == 11) document.write(' - 12'); 
	year=today.getYear();
	if (year <= 1999) 
	document.write (' - ',1900+year);
	else document.write (' - ',year);// -->
       
}

function date_en() {
	<!--
	today = new Date(); 
	weekday = today.getDay();
	if (weekday == 6) document.write('Saturday');
	if (weekday == 0) document.write('Sunday');
	if (weekday == 1) document.write('Monday');
	if (weekday == 2) document.write('Tuesday');
	if (weekday == 3) document.write('Wednesday');
	if (weekday == 4) document.write('Thursday');
	if (weekday == 5) document.write('Friday');
	document.write(', ');
	date = today.getDate(); 
	if (date < 10) 	document.write('0' + date);
	else document.write(date);
	
	month = today.getMonth();
	if (month == 0) document.write(' January');
	if (month == 1) document.write(' February');
	if (month == 2) document.write(' March');
	if (month == 3) document.write(' April');
	if (month == 4) document.write(' May');
	if (month == 5) document.write(' June');
	if (month == 6) document.write(' July');
	if (month == 7) document.write(' August');
	if (month == 8) document.write(' September');
	if (month == 9) document.write(' October');
	if (month == 10) document.write(' November');
	if (month == 11) document.write(' December'); 
	year=today.getYear();
	if (year <= 1999) 
	document.write (' - ',1900+year);
	else document.write (' - ',year);// -->
       
}	
