
<attach for="element" event="onclick" handler="click" />
<attach for="element" event="onmouseout" handler="low_lite" />

<script type="text/javascript">
function click()
{
var p = event.srcElement;

while(p) 
{
    if(p.tagName=='TR') break;
    p = p.parentElement;
}

if(p)
{
/*
    if(oldelem)
    {
        oldelem.style.backgroundColor = '';
    } */
    
    if(event.srcElement.checked)
        p.style.backgroundColor='#E0E8E3';
    else
        p.style.backgroundColor='';    
}
}
</script> 
