function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.1
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://www.ca.uky.edu/agecon' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}

var name = navigator.appName;
var vers = navigator.appVersion;
vers = vers.substring(0,1); // or 0,4  could return 4.5 instead of just 4


if (vers <5 && name == "Netscape")
	{ 
document.writeln('<a href="welcome.html">KFBM Home</a> | ');
document.writeln('<a href="about.html">About the Program</a> | ');
document.writeln('<a href="fbaspec.php">Groups and Contacts</a> | ');
document.writeln('<a href="pubs.php">Publications</a> | <br>');
document.writeln('<a href="newsletters.html">Newsletters</a> | ');
document.writeln('<a href="http://www.nafbas.org">NAFBAS</a> | ');
document.writeln('<a href="http://www.ca.uky.edu/agecon">Agricultural Economics</a>&nbsp;');
	}
else
	{
document.writeln('<a href="welcome.html" tabindex="1" accesskey="h">KFBM Home</a> | ');
document.writeln('<a href="about.html" tabindex="2" accesskey="a">About the Program</a> | ');
document.writeln('<a href="fbaspec.php" tabindex="3" accesskey="g">Groups and Contacts</a> | ');
document.writeln('<a href="pubs.php" tabindex="4" accesskey="p">Publications</a> | <br>');
document.writeln('<a href="newsletters.html" tabindex="5" accesskey="n">Newsletters</a> | ');
document.writeln('<a href="http://www.nafbas.org" tabindex="6" accesskey="f">NAFBAS</a> | ');
document.writeln('<a href="http://www.ca.uky.edu/agecon" tabindex="7" accesskey="e">Agricultural Economics</a> &nbsp; ');
	}