<!--

function CellOver(elem,link)
{ 
    elem.style.backgroundColor = '990000';
    elem.style.cursor = 'hand';
    link.style.color = 'FFFF99';
}
function CellOut(elem,link)
{ 
    elem.style.backgroundColor = 'CC0000';
    elem.style.cursor = 'default';
    link.style.color = 'FFFFFF';
}
function CellDown(elem,link)
{ 
    elem.style.backgroundColor = '999999';

}

function CellClick(src) {
    if(event.srcElement.tagName=='TD'){
	  src.children.tags('A')[0].click();
    }
  }
// -->