<!--
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]="Qué "+topic+"?";
			links[0]="index.html";
			}
		else{
			text[0]="Vista General escogida de Tema";
			links[0]="index.html";
			}
	}
	//-----------------------------------------
 	if(folder=="products" ){
		text[0]="Vista General escogida de Tema";
		links[0]="index.html";
		if(topic!=""){
			text[1]="Sobre "+topic;
			links[1]="about.html";
		}
	}
	
	//-----------------------------------------

	if(folder=="biotech"){
		text[0]="Vista General de biotecnología";
		links[0]="index.html";
		
		text[1]="¿Qué es Biotecnología? ";
		links[1]="index.html#what";
		
		text[2]="Historia";
		links[2]="index.html#history";
		
		text[3]=" Acontecimientos actuales";
		links[3]="index.html#ce";

		text[4]="Actividades";
		links[4]="index.html#activities";
		
		text[5]="Los Recursos adicionales y Liga";
		links[5]="index.html#links";
		
		text[6]="Referencias";
		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>');
		}
	
//-->
