   var oldbgcolor;
   var oldtextcolor;
   var newbgcolor;
   var newtextcolor;
   function mouseover(i,j)
   {
      newbgcolor= "#F0EEDF";
      newtextcolor= "#710D43";
      document.links(j).style.backgroundColor=newbgcolor;
      document.all(i).style.backgroundColor=newbgcolor;
      document.links(j).style.color=newtextcolor;
      document.all(i).style.color=newtextcolor;
   }
 
   function mouseout(i,j)
   {
      oldbgcolor="";
      oldtextcolor="";
      document.links(j).style.backgroundColor=oldbgcolor;
      document.all(i).style.backgroundColor=oldbgcolor;
      document.links(j).style.color=oldtextcolor;
      document.all(i).style.color=oldtextcolor;
  }
