/*************************************************
code by 我系广东人
*************************************************/

function onColor(td)
{
    if(!false){
                td.style.backgroundColor='#eed9ba';
            td.style.color='#000';
        }else{
                td.style.backgroundColor='';
            td.style.color='#000';
        }
}
function offColor(td)
{
    if(!false){
                td.style.backgroundColor='';
            td.style.color='';
        }else{
                td.style.backgroundColor='#eed9ba';
            td.style.color='#000';
        }
}

