
function changeTextColor(NNAME) {

 document.getElementsByName(NNAME)[0].style.color = '#FFCC33';

}

function changeTextColorToNormal(NNAME) {

 document.getElementsByName(NNAME)[0].style.color = '#FFFFFF';

}

function melde(idname,dbname) {
//alert(idname+" -> "+dbname);
  document.getElementById(idname).href = "/"+dbname+".htm";
//alert(document.getElementById(idname).href);
}


//  WEB-Statistik
   site=window.location.pathname;

   f='' + unescape(document.referrer);
   w=screen.width;
   h=screen.height;
   v=navigator.appName;
   if (v != 'Netscape') {var c=screen.colorDepth;}
   else {var c=screen.pixelDepth;}
   jsinfo = "http://www.basecamptanzania.com/WEBSTATISTIK/pixel.php?site=" + site +"&jsres=" + w + "x" + h +"&jscolor=" + c + "&jsref=" + f;
   str    = "<img src = \""+jsinfo+"\" alt=\"\" height=\"1\" width=\"1\">";   
   document.write(str+"\n");   
