var LastLinkHilite,LastLinkColor,LastListHilite,LastBulletHilite;



function DisplayText(section){
  SectionDisplay=document.getElementById(section);
  LinkID=section.slice(section.length-2);

  LinkHilite= document.getElementById(LinkID);
  ListHilite= document.getElementById('LIST'+LinkID);
  BulletHilite= document.getElementById('BULLET'+LinkID);

  if(LastLinkHilite && LastListHilite){ 
    SetStyle(LastLinkHilite,DefaultLinkColor,limegreen);
    SetStyle(LastListHilite,DefaultTextColor,limegreen);
    SetStyle(LastSectionDisplay,null,null,null,'none');
    SetStyle(LastBulletHilite,null,null,null,null,'url()');}
  
  SetStyle(SectionDisplay,null,null,null,'inline');
  SetStyle(LinkHilite,'white',darkblue);
  SetStyle(ListHilite,'black',lightblue,'inline-block');
  SetStyle(BulletHilite,null,null,null,null,'url(images/BulletArrowLeftBlue.gif)');
  
  LastSectionDisplay=SectionDisplay;
  LastLinkHilite=LinkHilite;
  LastListHilite=ListHilite;
  LastBulletHilite=BulletHilite;}

function SetStyle(Obj,Colr,BColr,BrdrColr,Disp,BullType){
 (Colr)?Obj.style.color=Colr:Obj.style.color=Obj.style.color;
 (BColr)?Obj.style.backgroundColor=BColr:Obj.style.backgroundColor=Obj.style.backgroundColor;


BrdrColr=null;
if (BrdrColr){
   Obj.style.borderColor=darkblue;Obj.style.borderStyle='solid';Obj.style.borderWidth='1px';}
else{
   Obj.style.borderStyle='none';}


 (Disp) ?Obj.style.display=Disp:Obj.style.display=Obj.style.display;
 (BullType) ?Obj.style.listStyleImage=BullType:Obj.style.listStyleImage=Obj.style.listStyleImage;
 return;}

