var myURL = location.href;
var myArray = myURL.split("/");
var myFile = myArray[myArray.length - 2] + "/" + myArray[myArray.length - 1];
var myDir = myArray[myArray.length - 1];


if (location.href=="http://www.hvtn.org/media/index.html") 
document.write ("<font color='#ffffff'>&rsaquo; Media Room</font><br>");
else document.write ("<a href='http://www.hvtn.org/media/index.html'>&rsaquo; Media Room</a><br>");

if (location.href=="http://www.hvtn.org/media/pr.html") 
document.write ("<font color='#ffffff'>&rsaquo; Press Releases</font><br>");
else document.write ("<a href='http://www.hvtn.org/media/pr.html'>&rsaquo; Press Releases</a><br>");
			
if (location.href=="http://www.hvtn.org/media/news.html")
document.write ("<font color='#ffffff'>&rsaquo; In the News</font><br>");
else document.write ("<a href='http://www.hvtn.org/media/news.html'>&rsaquo; In the News</a><br>");

if (location.href=="http://www.hvtn.org/media/logos.html")
document.write ("<font color='#ffffff'>&rsaquo; Logos</font><br>");
else document.write ("<a href='http://www.hvtn.org/media/logos.html'>&rsaquo; Logos</a><br>");

if (myDir == '')
{
	document.write("<div style='margin-left:10px;margin-bottom:10px;'><a class='print' href='javascript:popWin(\"index.html?print=yes\")'><img src='../images/printer.gif' border='0' /> Print-friendly page</a></div>");
}
else if(myDir=='sites.html' || myDir=='staff.html')
{
	//do nothing these are not to be offered as printer friendly
}
else if(myURL.indexOf("?") != -1)
{
	document.write("<div style='margin-top:20px;margin-bottom:10px;'><img src='http://www.hvtn.org/images/printer.gif' border='0' /> <a class='print' href='javascript:myPopWin(\"" + myDir + "&print=yes\")'>Print View</a></div>");
}
else
{
	document.write("<div style='margin-top:20px;margin-bottom:10px;'><img src='http://www.hvtn.org/images/printer.gif' border='0' /> <a class='print' href='javascript:myPopWin(\"" + myDir + "?print=yes\")'>Print View</a></div>");
}