<!--
// functions to do mouseover effects on links table
function mClk(src) {
  if (event.srcElement.tagName=='TD') {
    src.children.tags('A')[0].click();
  }
}
function oMo(src) {
  src.style.cursor = 'hand';
  src.bgColor = "#cccccc";
}
function oMf(src) {
  src.style.cursor = 'default';
  src.bgColor = "#ffffcc";
}
// -->
