function setOpacity(el)
{
    el.style.opacity = 0.75;
}
function remOpacity(el)
{
    el.style.opacity = 1.0;
}
