function Chameleon(A,B){

if (B==1){
A.style.color='#ffff00';
}
if (B==0){
A.style.color='#ffffff';
}
}
