function process() {
  // reading xml data
  if(xml.readyState != 4)
    return;

  if(xml.status != 200)
    return;

}

function CreateXML(url){ 
  // for different browsers 
  try{  
    xml = new XMLHttpRequest() 
  } 
  catch(e1){ 
    try{ 
      xml = new ActiveXObject("Microsoft.XMLHTTP") 
    } 
    catch(e2){ 
      try{ 
        xml = new ActiveXObject("Msxml2.XMLHTTP") 
      } 
      catch(e3){ 
        xml = false 
      } 
    } 
  } 
  
  if(xml){ 
    xml.onreadystatechange = process 
    xml.open("Get", url, true) 
    xml.send(null) 
  } 
}
//For Birthdays
  function SetSelected(idl)
  {
    for (var l=1;l<=6;l++) 
    {
      if (document.getElementById('li'+l.toString()) != null) 
      {
        document.getElementById('li'+ l.toString()).className='';
      }
    } 
    document.getElementById(idl).className='selected';
  }
