var corAtual = "";
function ganhaFoco_table(campo,borda){
corAtual = campo.style.border;
campo.style.border = borda;
}
function perdeFoco_table(campo){
campo.style.border = corAtual;
}