// Copyright (c) 2000 Grant Ingrams. All rights reserved.

function HiLiter2(L,HL){
if (HL==1){
      L.style.color='#FF0000';
} 
if (HL==0){
      L.style.color='#0000FF';
}
} 

// -->
