<!--
// Store the date In avarlable
d = new Date()
dateText = ""
// Get the cuurent day and convert it to the name of the day
dayValue = d.getDay()
if(dayValue == 0)
dateText += "Ch&#7911; nh&#7853;t"
else if (dayValue == 1)
dateText += "Th&#7913; hai"
else if (dayValue == 2)
dateText += "Th&#7913; ba"
else if (dayValue == 3)
dateText += "Th&#7913; t&#432;"
else if (dayValue == 4)
dateText += "Th&#7913; năm"
else if (dayValue == 5)
dateText += "Th&#7913; sáu"
else if (dayValue == 6)
dateText += "Th&#7913; b&#7849;y"
// Get the current date; if it's before 2000,add 1900
dateText += ", " + d.getDate()
// Get the current month and convert it to the name of the month
monthValue = d.getMonth()
dateText += ""
if (monthValue == 0)
dateText += "/1"
if (monthValue == 1)
dateText += "/2"
if (monthValue == 2)
dateText += "/3"
if (monthValue == 3)
dateText += "/4­"
if (monthValue == 4)
dateText += "/5"
if (monthValue == 5)
dateText += "/6"
if (monthValue == 6)
dateText += "/7"
if (monthValue == 7)
dateText += "/8"
if (monthValue == 8)
dateText += "/9"
if (monthValue == 9)
dateText += "/10"
if (monthValue == 10)
dateText += "/11"
if (monthValue == 11)
dateText += "/12"
// Get the current year; if it's before 2000, add 1900
if (d.getYear() < 2000)
dateText += "/" + (1900 + d.getYear())
else
dateText += "/" + (d.getYear())
// Get the current minutes
minuteValue = d.getMinutes()
if (minuteValue < 10)
minuteValue = "0" + minuteValue
// Get the current hours
hourValue = d.getHours()
// Customize the greeting based on the current hours
if (hourValue <= 12)
{timeText =  hourValue + ":" + minuteValue + " AM";}
else 
{timeText = (hourValue - 12) + ":" + minuteValue + " PM";}
var t='<font size="2">' + dateText + ", " + timeText +'. '+'</font>';
var a=d.getDate();
if(a==1&monthValue ==0)
t=t+'<font size="2" color="white">'+"Ng&agrave;y T&#7871;t D&#432;&#417;ng L&#7883;ch"+'</font>'
if(a==2&monthValue ==1)
t=t+'<font size="1" color="white">'+"Lập quan hệ Việt-Séc 2/2/1950"+'</font>'
if(a==3&monthValue ==1)
t=t+'<font size="2" color="white">'+"Th&agrave;nh L&#7853;p ĐCS Vi&#7879;t Nam"+'</font>'
if(a==14&monthValue ==1)
t=t+'<font size="2" color="white">'+"Ng&agrave;y L&#7877; T&igrave;nh Y&ecirc;u - Valentine"+'</font>'
if(a==8&monthValue ==2)
t=t+'<font size="2" color="white">'+"Ng&agrave;y Qu&#7889;c t&#7871; Ph&#7909; N&#7919;"+'</font>'
if(a==26&monthValue ==2)
t=t+'<font size="2" color="white">'+"Ng&agrave;y Trang web www.secviet.cz"+'</font>'

if(a==1&monthValue ==3)
t=t+'<font size="2" color="white">'+"Ng&agrave;y Cá Tháng T&#432;"+'</font>'
if(a==30&monthValue ==3)
t=t+'<font size="2" color="white">'+"Th&#7889;ng Nh&#7845;t N&#432;&#7899;c Vi&#7879;t Nam"+'</font>'
if(a==1&monthValue ==4)
t=t+'<font size="2" color="white">'+"Ng&agrave;y Qu&#7889;c T&#7871; Lao Đ&#7897;ng"+'</font>'
if(a==5&monthValue ==4)
t=t+'<font size="2" color="white">'+"Ng&agrave;y Kh&#7903;i Ngh&#297;a Tháng 5 c&#7911;a Séc"+'</font>'
if(a==19&monthValue ==4)
t=t+'<font size="2" color="white">'+"Ng&agrave;y Sinh Nh&#7853;t Bác H&#7891;"+'</font>'
if(a==8&monthValue ==4)
t=t+'<font size="2" color="white">'+"Ng&agrave;y L&#7877; Chi&#7871;n Th&#7855;ng Phát Xít"+'</font>'
if(a==19&monthValue ==7)
t=t+'<font size="2" color="white">'+"Ng&agrave;y K&#7927; Ni&#7879;m Cách M&#7841;ng Tháng 8"+'</font>'
if(a==2&monthValue ==8)
t=t+'<font size="2" color="white">'+"Ng&agrave;y L&#7877; Qu&#7889;c Khánh N&#432;&#7899;c CHXHCNVN"+'</font>'
if(a==28&monthValue ==8)
t=t+'<font size="2" color="white">'+"Ng&agrave;y L&#7877; Qu&#7889;c Khánh CH Séc"+'</font>'
if(a==28&monthValue ==9)
t=t+'<font size="1" color="white">'+"Ng&agrave;y Th&agrave;nh L&#7853;p N&#432;&#7899;c Ti&#7879;p Kh&#7855;c Đ&#7897;c L&#7853;p"+'</font>'
if(a==17&monthValue ==10)
t=t+'<font size="1" color="white">'+"Ngày kỷ niệm cách mạng Nhung 17.11.1989"+'</font>'

if(a==24&monthValue ==11)
t=t+'<font size="2" color="white">'+"Ng&agrave;y L&#7877; Tr&#432;&#7899;c Giáng Sinh"+'</font>'
if(a==25&monthValue ==11)
t=t+'<font size="2" color="white">'+"Ng&agrave;y L&#7877; Giáng Sinh Th&#7913; Nh&#7845;t"+'</font>'
if(a==26&monthValue ==11)
t=t+'<font size="2" color="white">'+"Ng&agrave;y L&#7877; Giáng Sinh Th&#7913; Hai"+'</font>'

// Write the greeting, the date, and the time to the page
document.write(t)
//-->