﻿function ativa(id) {
 document.getElementById(id).style.backgroundColor='#336699'
 document.getElementById(id).style.color='#FFFFFF';
 document.getElementById(id).style.cursor='pointer';
}

function desativa(id) {
 document.getElementById(id).style.backgroundColor='#CCCCCC';
 document.getElementById(id).style.color='#212735'
}

