Good advice on the back up. I never mentioned it, but the files are backed up.
This is how I changed the code as I understood you asking:
<?
// *******************************************************************
// themes/original/navbar.top.php
// *******************************************************************
$and = "?";
$html = "\r\n<!-- Start Top NavBar Table themes/original/navbar.top.php -->";
$html .= "\r\n<table cellspacing=\"2\" cellpadding=\"2\" width=\"100%\" ";
$html .= "border=\"0\">\r\n<tr>\r\n\t<td nowrap=\"nowrap\">\r\n\t<table ";
$html .= "class=\"homebalkback\" cellspacing=\"1\" cellpadding=\"0\" ";
$html .= "width=\"100%\" border=\"1\">\r\n\t<tr>\r\n\t\t<td nowrap=\"nowrap\" ";
$html .= "width=\"16%\" class=\"navbaroff\" align=\"center\"><a class=\"ttd\" ";
$html .= "target=\"iframe\" href=\"$gl[BasePath]/directory/";
if ($usesession == "yes"

{$html .= "?" . session_name() . "=". session_id() . "";}
$html .= "\">Browse</a></td>";
Every link in the whole page keeps the page inside the iframe in the top Navigation "Browse" works also
But the rest of the Top Navigation bar do not:
ie:
What's New What's Cool What's Popular Add A Site About
What I also did after... is that I went to the navbar.bottom.php (the links work excellent there)and found
$html .= "href=\"$gl[BasePath]/directory/";
Which I inserted as a copy in the top Nav bar
But with No different results:
<?
// *******************************************************************
// themes/original/navbar.top.php
// *******************************************************************
$and = "?";
$html = "\r\n<!-- Start Top NavBar Table themes/original/navbar.top.php -->";
$html .= "\r\n<table cellspacing=\"2\" cellpadding=\"2\" width=\"100%\" ";
$html .= "border=\"0\">\r\n<tr>\r\n\t<td nowrap=\"nowrap\">\r\n\t<table ";
$html .= "class=\"homebalkback\" cellspacing=\"1\" cellpadding=\"0\" ";
$html .= "width=\"100%\" border=\"1\">\r\n\t<tr>\r\n\t\t<td nowrap=\"nowrap\" ";
$html .= "width=\"16%\" class=\"navbaroff\" align=\"center\"><a class=\"ttd\" ";
$html .= "href=\"$gl[BasePath]/directory/";
if ($usesession == "yes"

{$html .= "?" . session_name() . "=". session_id() . "";}
$html .= "\">Browse</a></td>";