<!--
/*
Used for Membership form
*/
function doWhat() {
	var mtypehas=document.Membership.mt.value;
	if (mtypehas=="General Member (Individual) $20/year")
	{
		document.Membership.s.value="Not Applicable";
		document.Membership.sbp.value="Not Applicable";
	}
	if (mtypehas=="General Member (Family) $35/year")
	{
		document.Membership.s.value="";
		document.Membership.sbp.value="";
	}
	if (mtypehas=="Life Member $500 one time")
	{
		document.Membership.s.value="Not Applicable";
		document.Membership.sbp.value="Not Applicable";
	}
}
/*
Disable right mouse click Script (By Crash @ http://walk.to/crash)
Submitted to and permission granted to Dynamicdrive.com to feature script in it's archive
For full source code to this script and 100's more, visit http://dynamicdrive.com
*/
var message="Sorry, Right-Click doesnot work!";
function click(e) {
  return;
  if (document.all) {
  	 if (event.button == 2) {
  	 		alert(message);
  			return false;
  	 }
  }
  if (document.layers) {
    if (e.which == 3) {
    	alert(message);
    return false;
    }
  }
}
if (document.layers) {
  document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

/*
Moving Back to Top
*/
// --> 
