// Mushroom Club Navigation Javascript

function smllBorder(myName){
document.getElementById(myName).style.borderLeft = "0px solid white";
document.getElementById(myName).style.right = "0px";


}

function lrgBorder(myName){
document.getElementById(myName).style.borderLeft = "5px solid #6B5634";
document.getElementById(myName).style.right = "5px";

}

function liability(){
newWin = window.open('','','width=300,height=210');
newWin.document.write('<html><head><title>Liability Disclaimer</title><style>a:link, a:visited {color:#698285;text-decoration:underline;} a:hover{color:#698285;text-decoration:none;} body{font-family:arial;font-size:11px;}</style></head><body>');
newWin.document.write('<h2 style="color:#698285;font-size:15px;">Liability Statement</h2>');
newWin.document.write(clause);
newWin.document.write('<br /><br /><center><a href="#" onclick="window.close();return false;">Close this window</a>');
newWin.document.close();
}

var clause="Not all mushrooms are safe, and only through proper care and instruction can a person learn the proper techniques and types of mushrooms fit for harvesting.  The Mushroom Club of Georgia, its officers, and members are not responsible for any injuries or damages that may occur to parties using the information contained on this site.  The purpose of the site is for recreation, and should not be treated as an educational source for harvesting mushrooms.";
