
function item_on(theitem){
    document.getElementById("frame"+theitem).style.borderColor="#FFD25D";
    document.getElementById("cell"+theitem).style.backgroundColor="#f3f3f3";
}
function item_off(theitem){
    document.getElementById("frame"+theitem).style.borderColor="#0D343A";
    document.getElementById("cell"+theitem).style.backgroundColor="transparent";
}

function item_onx(theitem){
    document.getElementById("frame"+theitem).style.borderColor="#FFD25D";
    
}
function item_offx(theitem){
    document.getElementById("frame"+theitem).style.borderColor="#000000";
    
}
