function linkOn(obj)
{
   obj.style.color="#009900";
   obj.style.fontweight="bold";
   obj.style.cursor="pointer";
}

function linkOff(obj)
{
   obj.style.color="#FE9B35";
   obj.style.fontweight="normal";
   obj.style.cursor="default";
}

function memberlinkOn(obj) {
  obj.style.color="#060304";
  obj.style.cursor="pointer";
}

function memberlinkOff(obj) {
   obj.style.color="#A5643C";
   obj.style.cursor="default";
}
