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