function getBirthdays (Lvl)
  { 
//  Updated to xhtml 11.30.05 
//  Updated to xhtml-strict 1.10.07 
    var today = new Date();
    var m_names = new Array("","January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");

    TYR = today.getFullYear();
    TM = today.getMonth() + 1;
    if (TM == 12) 
         {NYR = TYR + 1;
          NM = 1}
       else
         {NYR = TYR;
          NM = TM + 1;}

  document.write('<tr><td colspan="3" class="center-middle">(<a href="' + Lvl + 'memberinfo/birthdays/' + m_names[TM] + '_Birthdays.htm">This Month</a> | ');
  document.write('<a href="' + Lvl + 'memberinfo/birthdays/' + m_names[NM] + '_Birthdays.htm">Next Month</a>)</td></tr>');
  }