// Display logo and club name
//
// Input:
//     basedir = Optional argument indicating the location of the base directory
//
function top(basedir)
{
    with(document)
    {
        // Form path to logo
        logo = 'images/logo.gif';
        if (basedir)
        {
            logo = basedir + '/' + logo;
        }

        // Open table for club logo and name
        write('<table border="0" class="Top">');

        // Open table row for club logo and name
        write('<tr class="Top">');

        // Display club logo
        write('<td class="TopLogo">');
        write('<img src="' + logo + '">');
        write('</td>');

        // Display club name
        write('<td>');
        write('<h1>THE MOUNTAIN DULCIMER ASSOCIATION</h1>');
        write('<h2>P. O. Box 4854<br>Huntsville, Alabama 35815-4854</h2>');
        write('</td>');

        // Close table row for club logo and name 
        write('</tr>');

        // Close table for club logo and name
        write('</table>');
    }
}
