þÿ<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Ca Doan Hien Linh</title> <meta name="Description" content="Ca Doan Hien Linh" /> <meta name="Keywords" content="Ca Doan Hien Linh, Lo Duc, Houston, Texas" /> <link rel="shortcut icon" href="http://hienlinh.org/images/logo.ico" /> <link rel="Stylesheet" href="http://hienlinh.org/hl.css" /> <script type="text/javascript"> //the bday array data can be generated from server-side var arrBday = [ ['ChË × Duy Hi¿u', '1/1/2000'], ['ChË Lý Ph°¡ng Brenda', '1/17/2000'], ['Anh NguyÅn Tr§n Thành ¡t', '1/22/2000'], ['ChË NguyÅn Tr§n Thùy Châu', '1/31/2000'], ['ChË Phan Quónh Ph°¡ng', '2/4/2000'], ['Cô Tr°¡ng H°Ýng', '2/22/2000'], ['Anniversary Chú éc & Cô H°Ýng', '2/22/2000'], ['Chú éc (Cô H°Ýng)', '3/1/2000'], ['ChË L°¡ng B£o Toàn', '3/3/2000'], ['Anniversary AC Hï Vân', '3/06/2004'], ['Anh NguyÅn Hoàng Nguyên', '3/15/2000'], ['ChË Ph¡m MÙng Dung', '3/22/2000'], ['Anh inh Hoàng Ding', '3/27/2000'], ['Anh inh Hoàng Tu¥n', '4/4/2000'], ['ChË Phan Thiên H°¡ng', '4/22/2000'], ['ChË Lê Ph°¡ng Thùy', '4/25/2000'], ['ChË Ph¡m ThË Khê', '4/29/2000'], ['Anh × éc Linh', '5/1/2000'], ['Anniversary AC Kh£i H°¡ng', '05/15/1999'], ['ChË NguyÅn C©m Vân', '5/19/2000'], ['Anniversary AC Kevin Hân', '05/20/2006'], ['ChË NguyÅn NguyÅn H°¡ng Michelle', '6/01/2000'], ['ChË NguyÅn Vi Thi S¡n', '6/04/2000'], ['ChË NguyÅn NgÍc Hân', '6/20/2000'], ['Anniversary AC QuÑc Th£o', '06/10/2000'], ['Anniversary AC Tâm HuyÁn', '06/09/2001'], ['Anniversary AC ¡t Châu', '06/26/2006'], ['Anniversary AC Ái TuyÁn', '06/06/2007'], ['Anniversary AC iÇp Thùy', '06/14/2008'], ['Anh Lê Vn Phúc', '7/1/2000'], ['Anh Phan ình Tu¥n', '7/20/2000'], ['Anniversary AC Phú Liên', '07/01/2000'], ['Anniversary AC Tu¥n Hi¿u', '07/19/2008'], ['Anh Tr°¡ng TrÍng', '8/11/2000'], ['Anh Vi Minh Tâm', '8/15/2000'], ['Anh Lê Hoàng Linh', '8/20/2000'], ['ChË NguyÅn HÓ Trúc NgÍc', '8/28/2000'], ['Anniversary AC BÕn', '08/03/1980'], ['ChË × DiÇu HuyÁn', '9/3/2000'], ['ChË inh Hoàng Thåy DiÅm', '9/7/2000'], ['Anh ·ng Vn Ái(Steven)', '9/9/2000'], ['Anh NguyÅn Huy Phúc(Kevin)', '9/16/2000'], ['Anh Vi éc Phú', '9/19/2000'], ['ChË × ThË Thùy Kim', '9/25/2000'], ['Anh Ngô Ngh)a', '9/26/2000'], ['Anh NguyÅn Tr§n QuÑc ¡t', '9/26/2000'], ['Anh Vi Quang Kh£i', '9/27/2000'], ['Anh Tr°¡ng Công L­p', '10/12/2000'], ['Anh NguyÅn Quang Liêm', '10/13/2000'], ['Anh Tr§n Phú Hï', '10/22/2000'], ['ChË Lê Vi Loan', '10/30/2000'], ['Anh NguyÅn Diên V)nh Thåy', '11/20/2000'], ['Anh Ph¡m Ái QuÑc', '11/23/2000'], ['Anniversary AC Phúc NgÍc', '11/26/1994'], ['Anniversary AC Tu¥n Thçy', '11/03/2007'], ['ChË NguyÅn Lisa', '12/03/2000'], ['ChË Lê Mù Liên', '12/06/2000'], ['Anh Vi Hoàng iÇp', '12/19/2000'], ['Anh Lê NgÍc Hoàn', '12/23/2000'], ['ChË NguyÅn Thu Th£o', '12/25/2000'], ['ChË NguyÅn Kim Trang Châu', '12/26/2000'], ['ChË D°¡ng Th£o', '12/28/2000'], ['Ca tr°ßng Hoàng BÕn', '12/28/2000'], ['× éc Chung', '12/29/2000'] //...and so on (last entry must not have a trailing comma) ]; function getBdayList(month){ var bday, idx; var today = new Date(); var bdayList = new Array(); for (var i=0;i<arrBday.length;i++){ bday = new Date(arrBday[i][1]); if (isNaN(bday)) continue; if (month == bday.getMonth()){ idx = bdayList.length; bdayList[idx] = new Object(); bdayList[idx].name = arrBday[i][0]; bdayList[idx].bday = bday; bdayList[idx].age = today.getFullYear() - bday.getFullYear(); } } if (bdayList.length > 0){ //sort asc by birthdate bdayList.sort( function(a, b){ if (a.bday.getDate() < b.bday.getDate()) return -1; if (a.bday.getDate() > b.bday.getDate()) return 1; return 0; } ); } return bdayList; } function displayBdayList(){ var arrMonth = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"); var month = new Date().getMonth(); var date = new Date().getDate(); var monthName = arrMonth[month]; var bdayList = getBdayList(month); var len = bdayList.length; var s = "<h2>" + monthName + ", Happy Birthday! to . . . . </h2>"; if (len>0){ s += '<ul>'; for (var i=0; i<len; i++){ //no age s += '<li' + ((date == bdayList[i].bday.getDate())?' class="bdayToday"':'') + '><strong>' + bdayList[i].name + "</strong> - " + monthName + " " + bdayList[i].bday.getDate() + "</li>"; //with age //s += '<li' + ((date == bdayList[i].bday.getDate())?' class="bdayToday"':'') + '><strong>' + bdayList[i].name + "</strong> - " + monthName + " " + bdayList[i].bday.getDate() + " (" + bdayList[i].age + ")</li>"; } s += '</ul>'; } else{ s += "No birthday celebrant for this month."; } document.write(s); } </script> </head> <body> <center> <div id="container"> <img src="http://hienlinh.org/images/topbg.jpg" height="118px" style="margin: 0; border: 0; padding: 0; vertical-align: bottom;" alt="" /> <div id="navcontainer"> <ul id="navlist"> <li id="active"><a href="http://hienlinh.org/index.htm" id="current">Home</a></li> <li><a href="http://hienlinh.org/forum/">Forum</a></li> <li><a href="http://hienlinh.org/schedule.htm" >Schedule</a></li> <li><a href="http://hienlinh.org/gallery.htm">Pictures</a></li> </ul> </div> <div id="rotateimages"> <a href="http://hienlinh.org/aboutus.htm" title="About Us" ><img border="0" src="http://hienlinh.org/images/aboutus.gif" align="middle" /></a> &diams; <a href="http://hienlinh.org/birthday.htm" title="Birthday and Anniversary " ><img border="0" src="http://hienlinh.org/images/birthday.gif" align="middle"/></a> &diams; <a href="http://hienlinh.org/roster.htm" title="Roster" ><img border="0" src="http://hienlinh.org/images/dapca.gif" align="middle" /></a> &diams; <a href="http://hienlinh.org/contact.htm" title="Contact" ><img border="0" src="http://hienlinh.org/images/contact.gif" align="middle" /></a> <table id="baby"> <tr> <td align="left"> <img border="0" src="http://hienlinh.org/images/babyspace.gif" align="top" width="221" height="77" /><br /> <script type="text/javascript"> displayBdayList(); </script> </td> </tr> </table> </div> <img src="http://hienlinh.org/images/footbg.gif" alt="" style="margin: 0; border: 0; padding: 0; vertical-align: bottom;" width="550" height="41" /> </div> </center> </body> </html>