function showme(l,f,anImage,newSource) {
   obj=document.getElementById(f);
   obj.style.display="inline";
   obj.style.cursor='hand';
   obj2=document.getElementById(l);
   obj2.style.color='white';
   obj2.style.cursor='hand';
   changeImage(anImage, newSource);
   }
function hideme(l,f,anImage,newSource) {
   obj=document.getElementById(f);
   obj.style.display='none';
   obj2=document.getElementById(l);
   obj2.style.color='#7D1708';
   changeImage(anImage, newSource);
}
function changeImage(anImage, newSource) {
   document.images[anImage].src = newSource;
}
function CNTNTht() {
   testme = navigator.appName;
  if (testme == "Netscape") scrnht = window.innerHeight;
  if (testme != "Netscape") scrnht = document.body.clientHeight;
   scrnht = scrnht - 190;
  if (scrnht <= 100) scrnht = 100;
   obj=document.getElementById('CNTNT');
   obj.style.height=scrnht;
   obj2=document.getElementById('SPON');
   obj2.style.top=(scrnht + 120);
}

