//Change Element Color
function changeEC(el,on){
    if (on==0) el.style.background='#FFFFFF';
    if (on==1) el.style.background='#DFE5F0';
}