//This script writes out directory entries 

function rigamember(member, whenplayed)
    {
    document.write("<tr>");
    document.write("<td align='Left' width='50%'> " + member + " </td>");
    document.write("<td align='Left' width='50%'> " + whenplayed + " </td>");
    document.write("</tr>");
   }


function table_start()
    {
    document.write("<table CELLSPACING='0' CELLPADDING='0' Border='0' width='95%'>");
    }

function endtable()
    {
    document.write("</table>");
    } 
 
 
 

