function co(element,mode) {
if (mode=="in") {
cursortype = 'hand'
tdcolor = '#b8bd99'
} else if (mode=="out") {
cursortype = ''
tdcolor = '#6c7c41'
}
element.style.background=tdcolor;
element.style.cursor=cursortype;
}