function changecolor(e)
{
document.getElementById(e).style.background = "#999933";
}

function resetcolor(e)
{
document.getElementById(e).style.background = "#006699";
}
