browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);

if (browserVer >= 3) version = "n3";
else version = "n2";

function WinOpen(L) {
   x = L;
   if ((x.indexOf(".htm") == -1) && (x.indexOf(".asp") == -1)) {x += ".htm";}
   if (version == "n3") {
      fenster=window.open(x,'Information','left=5,top=5,width=500,height=450,scrollbars=yes,resizable=yes,toolbar=yes,menubar=no');
      }
   if (version == "n2") {
      window.location.href = x;
      }
   }

function FussLeiste(parameter) {
   x = parameter;
   p = location.pathname;
   document.write("<p><br>");
   document.write("|&nbsp;&nbsp;");
   document.write("<a href='http://www.gtz.de' accesskey='g' target='_blank'>GTZ Homepage</a>");
   document.write("&nbsp;&nbsp;|&nbsp;&nbsp;");
   document.write("<a href='http://www.gtz.de/de/kontakt/684.htm' accesskey='k' target='_blank'>Kontakt</a>");
   document.write("&nbsp;&nbsp;|&nbsp;&nbsp;");
   document.write("<a href='http://www.gtz.de/de/aktuell/2104.htm' target='_blank'>Aktuell</a>");
   document.write("&nbsp;&nbsp;|&nbsp;&nbsp;");
   document.write("<br><br></p>");
   }
