<!--
pane_url=location.href.substring(0,location.href.length-9);
content_url=top.frames['content'].location.href;
position = content_url.lastIndexOf("/")+1;
content_url=content_url.substring(0,position);

if(content_url!=pane_url){
	top.frames['content'].history.go(-1);
	}

	var text=new Array();
	var links=new Array();
	
	//-----------------------------------------
	 if(folder=="biology" ){
		if(topic!=""){
			text[0]="What "+topic+"?";
			links[0]="index.html";
			}
		else{
			text[0]="Selected Topic Overview";
			links[0]="index.html";
			}
	}
	//-----------------------------------------
 	if(folder=="products" ){
		text[0]="Selected Products Overview";
		links[0]="index.html";
		if(topic!=""){
			text[1]="About "+topic;
			links[1]="about.html";
		}
	}
	
	//-----------------------------------------

	if(folder=="biotech"){
		text[0]="Biotechnology Overview";
		links[0]="index.html";
		
		text[1]="What is Biotechnology?";
		links[1]="index.html#what";
		
		text[2]="History";
		links[2]="index.html#history";
		
		text[3]="Current Events";
		links[3]="index.html#ce";

		text[4]="Activities";
		links[4]="index.html#activities";
		
		text[5]="Additional Resources and Links";
		links[5]="index.html#links";
		
		text[6]="References ";
		links[6]="index.html#references";
		
		}
	//-----------------------------------------
	var temp=text.length;
	
	for(n=0; n < temp ; n++ ){
		document.write('<p><a href="' + links[n] + '" target="content">');
		document.write(text[n] + '</a>');
		}
	
//-->
