	  if (window.XMLHttpRequest)
  {
  xhttp=new window.XMLHttpRequest();
  }
else // Internet Explorer 5/6
  {
  xhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }

  
  
xhttp.open("GET","includes/roster.xml",false);
xhttp.send("");
xmlDoc=xhttp.responseXML; 



var members=xmlDoc.getElementsByTagName("MEMBER");
for (k=0;k<members.length;k++)
  {   
	  document.write("<tr> <td width='5%'>");
	  document.write("<font color='#000080'>");
	  document.write(members[k].getElementsByTagName("STATUS")[0].childNodes[0].nodeValue);
	  document.write("</font></td>");
	  document.write("<td width='20%'>");
	  document.write(members[k].getElementsByTagName("NAME")[0].childNodes[0].nodeValue);
	  document.write("<td width='50%'><font size = 2>");
	  var titles = members[k].getElementsByTagName("TITLE");
	  
	  for (j=0;j<titles.length;j++)
	  {
		var curTitle = titles[j].childNodes[0].nodeValue;
		
		if(j>0)
		  document.write(", ");
		
		if(curTitle == "MAPMAKER")
		{
		  document.write("<img src='site_graphics/honor_mapmaker.gif' width='10' height='10'>");
		}
		else
		{
		  document.write(curTitle);
		}
	  }
	  document.write("</font></td><td width='5%'>");
	  
	  document.write("<img src=site_graphics/flags/");
	  document.write(members[k].getElementsByTagName("COUNTRY")[0].childNodes[0].nodeValue);
	  document.write("_fl_md_wht.gif width='24' height='19'></td>");
	  
	 document.write("<td width='20%'>");
	  
	  var games = members[k].getElementsByTagName("GAME");
	  
	  for (g=0;g<games.length;g++)
	  {
		if(g>0)
		{
		  document.write(" & ");
		}
		document.write(games[g].childNodes[0].nodeValue);
	  }
	  document.write("</td>");
	  document.write("</tr>");
  }

	document.write("</table><br>"); 
	document.write("&nbsp;<b><font color=#000080>The Hawks Hall of Fame</font></b><br> <br><table width=610 border=1 bordercolor=#99cccc> <table width=610 border=1> <tr> <th width=169 scope=col><font color=#000080>Name</font></th><th width=510 scope=col><font color=#000080>Short History</font><font color=#0080ff></font></th></tr>");
	
	
var oldmembers=xmlDoc.getElementsByTagName("OLDMEMBER");
for (k=0;k<oldmembers.length;k++)
  {   
	  document.write("<tr> <th scope='col'>");
	  document.write(oldmembers[k].getElementsByTagName("NAME")[0].childNodes[0].nodeValue);
	  document.write("</th><th scope='col'>");
	  document.write(oldmembers[k].getElementsByTagName("PARAGRAPH")[0].childNodes[0].nodeValue);
	  document.write("</th></tr>");
  }
	
	document.write("</table><br>");