//**********************************
// Javascript menu program.
// AUTHOR: H. ten Brummelaaar
//**********************************

function One(pLevel,btop){
var strLevel = "/";

switch (pLevel){
case 0:
	strLevel = "";
	break;
case 1:
	strLevel = "../";
	break;
// cannot cater for else condition yet. 
};

document.write('<div id="logo" style="position:absolute; width:78px; height:95px; z-index:23; left: 0px; top: 0%"><a href=' + strLevel + 'index.htm><img src=' + strLevel + 'graphics/logo.jpg width="79" height="96" alt="Home" border="0"></a></div>')


// bottom menu 
//document.write('<div id="bottomlinks" style="position:absolute; width:352px; height:34px; z-index:20; left: 267px; top: 800px"> ')

document.write('<div id="bottomlinks" style="position:absolute; width:352px; height:34px; z-index:20; left: 267px; top: ' + btop +'"> ')
document.write(' <div align="center"> ')
 document.write(' <table width="266" border="0" cellspacing="0" cellpadding="0">')
 document.write('<tr> ')
 document.write('<td><a href="' + strLevel + 'clubs.htm" class="small">Clubs</a> <a href="' + strLevel + 'actevents.htm" class="small">Events</a> ')
 document.write('  <a href="' + strLevel + 'links.htm" class="small">Links</a> </td>')
 document.write(' </tr>')
 document.write(' <tr> ')
 document.write('<td><a href="' + strLevel + 'index.htm" class="small">Home</a> <a href="' + strLevel + 'siteindex.htm"class="small">Site ')
 document.write('Index</a> <a href="' + strLevel + 'contact.htm"><span class="small">Contact Us</span></a> ')
 document.write('<a href="' + strLevel + '../index.htm"class="small">WebMaster</a></td>')
 document.write(' </tr>')
 document.write(' </table>')
 document.write(' </div>')
document.write('</div>')


}
