function setColor(theLine, val, numid){
 if(val==1){
   theLine.style.background="#008b97";
   
 }else{
   theLine.style.background="";
 }

}

