//Updated to Spanish version 9-10-04 by William Milligan

//Find the relative path of the current page.

var myArray;
var myURL = location.href;
var myFile;
var myDir
myArray = myURL.split("/");
myFile = myArray[myArray.length - 3] + "/" + myArray[myArray.length - 2] + "/" + myArray[myArray.length - 1];
myDir = myArray[myArray.length - 1];

if (myFile=="spanish/science/index.html" || myDir==''){
document.write ("<font color='#ffffff'>&rsaquo; Ciencia HVTN</font><br>");
}else{
document.write ("<a href='index.html'>&rsaquo; Ciencia HVTN</a><br>");
}
if (myFile=="spanish/science/strategies.html"){
document.write ("<font color='#ffffff'>&rsaquo; Estrategias</font><br>");
}else{
document.write ("<a href='strategies.html'>&rsaquo; Estrategias</a><br>");
}
		
if (myFile=="spanish/science/outcomes.html"){
document.write ("<font color='#ffffff'>&rsaquo; Resultados</font><br>");
}else{
document.write ("<a href='outcomes.html'>&rsaquo; Resultados</a><br>");
}

if (myFile=="spanish/science/phases.html"){
document.write ("<font color='#ffffff'>&rsaquo; Fases del ensayo</font><br>");
}else{
document.write ("<a href='phases.html'>&rsaquo; Fases del ensayo</a><br>");
}

if (myFile=="spanish/science/volunteerfaqs.html"){
document.write ("<font color='#ffffff'>&rsaquo; P&R de los voluntarios</font><br>");
}else{
document.write("<a href='volunteerfaqs.html'>&rsaquo; P&R de los voluntarios</a><br>");
}

if (myFile=="spanish/science/trials.html"){
document.write ("<font color='#ffffff'>&rsaquo; Ensayos actuales</font><br>");
}else{
document.write("<a href='trials.html'>&rsaquo; Ensayos actuales</a><br>");
}

if (myFile=="spanish/science/collaborators.html"){
document.write ("<font color='#ffffff'>&rsaquo; Colabore con nosotros</font><br>");
}else{
document.write("<a href='collaborators.html'>&rsaquo; Colabore con nosotros</a><br>");
}

if (myFile=="spanish/resources/glossary.html"){
document.write ("<font color='#ffffff'>&rsaquo; Glosario</font><br>");
}else{
document.write("<a href='http://www.hvtn.org/spanish/resources/glossary.html'>&rsaquo; Glosario</a><br>");
}

if (myDir == ''){
	document.write("<div style='margin-top:20px;'><img src='../../images/printer.gif' border='0' hspace=3><a class='print' href='javascript:popWin(\"index.html?print=yes\")'>Imprimir</a></div>");
}
else if(myDir=='trials.html' || myDir=='collaborators.html')
{
	//do nothing
}
else
{
	document.write("<div style='margin-top:20px;'><img src='../../images/printer.gif' border='0' hspace=3><a class='print' href='javascript:myPopWin(\"" + myDir + "?print=yes\")'>Imprimir</a></div>");
}