<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
   <xsl:template match="/">
      <center>
	  <img border="0" src="img_pop_hd.gif" width="386" height="31"></img>
	  <h2>STUDENT CLUBS LIST BY CLUB NAME</h2>
	  <p>
	  <table id="ClubTable" border="1" cellpadding="5">
	     <thead>
		    <th>CONTACT</th>
			<th>CLUB</th>
			<th>PHONE</th>
			<th>E-MAIL</th>
		 </thead>
		 <xsl:for-each select="STUDENTCLUBS/PHONELIST" order-by="+CLUB">
		    <tr align="center">
			   <td>
			      <span style="font-style:italic">
				  <xsl:value-of select="CONTACT"/>
				  </span>
			   </td>
			   <td>
			      <xsl:value-of select="CLUB"/>
			   </td>
			   <td>
			      <xsl:value-of select="PHONE"/>
			   </td>
			   <td>
			      <xsl:value-of select="EMAIL"/>
			   </td>
			</tr>
		 </xsl:for-each>
	  </table>
	  </p>
	  </center>
   </xsl:template>
</xsl:stylesheet>