
<!-- Begin


function getCookie(labelName) {
 var labelLen = labelName.length;
 var cookieData = document.cookie;
 var cLen =cookieData.length;
 var i = 0;
 var cEnd;
 while (i < cLen) {
   var j = i + labelLen;
   if (cookieData.substring(i,j) == labelName) {
     cEnd = cookieData.indexOf(";",j);
     if (cEnd == -1) {
       cEnd = cookieData.length;
     }
     return unescape(cookieData.substring(j+1, cEnd));
   }
   i++;
 }
 return "";
}

// NOTE: If you use a ' add a slash before it like this \'

document.write('<DIV id=menu>');
document.write('<TABLE cellpadding=0 cellspacing=1 border=0 bgcolor="#FFFFFF" width="100%">');
document.write('<tr><td width="400" background="picts/button.gif">');
document.write('<IMG SRC="picts/spacer.gif" HEIGHT="5" WIDTH="50" border="0">');
document.write('</td><form action="index.php"><td>');
document.write('<input type="submit" value=" Home " onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');

document.write('</td></form><form action="news.php"><td>');
document.write('<input type="submit" value="News Letters" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');

document.write('</td></form><form action="meetings.php"><td>');
document.write('<input type="submit" value="Meeting Info" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');

document.write('</td></form><form action="calendar.php"><td>');
document.write('<input type="submit" value="Calendar" onmouseover="this.className=\'buttonon\'" // onmouseout="this.className=\'button\'" class="button"><br>');

document.write('</td></form><form action="projects.php"><td>');
document.write('<input type="submit" value="Projects" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');

document.write('</td></form><form action="officers.php"><td>');
document.write('<input type="submit" value="Officers" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');

document.write('</td></form><form action="foundation.php"><td>');
document.write('<input type="submit" value="Foundation" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');

document.write('</td></form><form action="links.php"><td>');
document.write('<input type="submit" value="Links" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');

document.write('</td></form><form action="contact.php"><td>');
document.write('<input type="submit" value="Contact Us" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');

document.write('</td></form><form action="members.php"><td>');
if (getCookie('AuthMember') != "") {
document.write('<input type="submit" value="Members" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
} else {
document.write('<input type="submit" value="Log In" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
}

if (getCookie('AuthCode') != "" && getCookie('AuthCode') != "0") {
  document.write('</td></form><form action="maint.php"><td>');
  document.write('<input type="submit" value="Admin Mode" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
}

if (getCookie('AuthMember') != ""){
  document.write('</td></form><form><td><input type="button" value="Logged in as&nbsp;');
  document.write(getCookie("FirstName")+'&nbsp;'+getCookie("LastName")+'" class="button"><br>');
}

document.write('</td></form>');


document.write('<td WIDTH="99%" background="picts/button.gif"> ');

document.write('&nbsp;<br>');
document.write('</td></tr></table></DIV>');




//  End -->