<!--
var orgcolor="#D9EBFF"; 
var mycolor="#A2CFFF"; 

function restoreColor(rn) {
    if (document.all) {
        window.document.all[rn+'td'].bgColor = mycolor;
      }
}

function changeColor(rownum) {
    if (document.all) {
        window.document.all[rownum+'td'].bgColor = orgcolor;
  }
}
//-->
